/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Modalidades Cards */
.modalidade-card {
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.modalidade-card:hover {
    transform: translateY(-5px);
}

.modalidade-card .card-body {
    padding: 1.25rem;
}

.modalidade-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.modalidade-card .card-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.modalidade-card .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.modalidade-card .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Fixed CTA Button */
.fixed-bottom {
    right: 2rem;
    bottom: 2rem;
    left: auto;
}

/* Planos Cards */
.plan-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.plan-card.featured {
    border: 3px solid #007bff;
    position: relative;
}

.plan-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.plan-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.plan-price small {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-body {
    padding: 1.5rem 1.25rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plan-card.featured .plan-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
}

.plan-card.featured .plan-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
}

/* Admin Panel Styles */
.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}

.admin-body {
    padding-top: 70px; /* Espaço para a navbar fixa */
}

.admin-navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
    }
    
    .fixed-bottom {
        right: 1rem;
        bottom: 1rem;
    }
    
    .admin-body {
        padding-top: 60px;
    }
}