/* Utility Classes */
.hidden {
    display: none !important;
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --primary-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --white: #ffffff;
    --background-dark: #0a0a0a;
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gold {
    color: var(--primary-gold);
}

.premium {
    color: var(--primary-gold);
    font-weight: 700;
}

.fitness {
    color: var(--white);
    font-weight: 300;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--lighter-gray);
    margin: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-gold);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list {
        display: none;
    }
    
    .nav-list.active {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--primary-gray);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23000" width="1000" height="600"/><g fill="%23FFD700" opacity="0.1"><circle cx="200" cy="150" r="50"/><circle cx="800" cy="450" r="80"/><rect x="400" y="250" width="200" height="100" rx="10"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--lighter-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    min-width: 180px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--lighter-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: var(--secondary-black);
}

/* Catalog Section */
.catalog {
    background: var(--background-dark);
    padding: 80px 0;
}

.catalog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.catalog-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--primary-gray);
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-gold);
}

.plan-card.featured {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.plan-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 0.8rem;
    transform: rotate(45deg);
    text-align: center;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.plan-card h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--lighter-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price-old {
    color: var(--lighter-gray);
    text-decoration: line-through;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price-current {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-period {
    color: var(--lighter-gray);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    color: var(--white);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
}

/* Evaluation Card */
.evaluation-card {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-gray);
    overflow: hidden;
}

.evaluation-content {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.evaluation-icon {
    background: var(--gradient-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evaluation-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.evaluation-info {
    flex: 1;
}

.evaluation-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.evaluation-info p {
    color: var(--lighter-gray);
    margin-bottom: 1rem;
}

.evaluation-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.evaluation-pricing .price-old {
    font-size: 1rem;
    margin: 0;
}

.evaluation-pricing .price-current {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.evaluation-action {
    flex-shrink: 0;
}

/* Plan Summary in Modal */
.plan-summary {
    background: var(--primary-black);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--primary-gold);
}

.plan-summary h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.plan-summary p {
    color: var(--lighter-gray);
    margin-bottom: 1rem;
}

.plan-summary .summary-price {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-content .subtitle {
    color: var(--lighter-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--primary-gray);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-gold);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--lighter-gray);
    margin-bottom: 1rem;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: var(--primary-gold);
}

/* Trainers Section */
.trainers {
    background: var(--background-dark);
}

.trainers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trainer-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--primary-gray);
}

.trainer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow);
}

.trainer-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trainer-image i {
    font-size: 2rem;
    color: var(--primary-black);
}

.trainer-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.trainer-card p {
    color: var(--lighter-gray);
    margin-bottom: 1rem;
}

.social-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-gold);
}

/* Services Section */
.services {
    background: var(--secondary-black);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--primary-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--lighter-gray);
}

.service-highlight {
    background: var(--gradient-dark);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--primary-gold);
    margin-top: 3rem;
}

.service-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--background-dark);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 400px;
    margin: 0 auto;
}

.contact-card {
    background: var(--secondary-black);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--primary-gray);
}

.contact-card i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--lighter-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--primary-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-logo-text p {
    color: var(--lighter-gray);
    font-size: 0.9rem;
}

.footer-info p {
    color: var(--lighter-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-info i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-gray);
}

.footer-bottom p {
    color: var(--lighter-gray);
    font-size: 0.9rem;
}

.dev-credits {
    margin-top: 0.5rem;
}

.dev-credits a {
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
    font-weight: 500;
}

.dev-credits a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--secondary-black);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--primary-gray);
}

.close {
    color: var(--lighter-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--primary-gold);
}

.modal-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.modal-content h2 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--primary-gray);
    border-radius: 8px;
    background-color: var(--primary-black);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--lighter-gray);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.radio-label:hover {
    background-color: var(--primary-gray);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gray);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: var(--transition);
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-gold);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

/* Terms Section Styles */
.terms {
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

.terms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.terms-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.terms-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.terms-header p {
    color: var(--lighter-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.terms-rules {
    margin-bottom: 3rem;
}

.rule-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    transition: var(--transition);
}

.rule-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
}

.rule-item h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.rule-number {
    background: var(--primary-gold);
    color: var(--primary-black);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1rem;
}

.rule-item p {
    color: var(--white);
    line-height: 1.7;
    text-align: justify;
}

.terms-declaration {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
}

.terms-declaration h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.terms-declaration p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Terms Acceptance Checkbox Styles */
.terms-acceptance {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--primary-black);
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: var(--secondary-gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
    }
    
    .nav-list.active {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--primary-gray);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .evaluation-pricing {
        justify-content: center;
    }
    
    .info-cards,
    .trainers-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .terms-header h3 {
        font-size: 1.5rem;
    }
    
    .rule-item {
        padding: 1rem;
    }
    
    .rule-item h4 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rule-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        margin-right: 0;
    }
    
    .terms-declaration {
        padding: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .checkbox-custom {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .info-card,
    .trainer-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .service-highlight {
        padding: 2rem 1rem;
    }
    
    .modal-content {
        margin: 15% auto;
        padding: 1rem;
    }
    
    .close {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Loading animation for forms */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Terms Section Styles */
.terms {
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

.terms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.terms-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.terms-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.terms-header p {
    color: var(--lighter-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.terms-rules {
    margin-bottom: 3rem;
}

.rule-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    transition: var(--transition);
}

.rule-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
}

.rule-item h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.rule-number {
    background: var(--primary-gold);
    color: var(--primary-black);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1rem;
}

.rule-item p {
    color: var(--white);
    line-height: 1.7;
    text-align: justify;
}

.terms-declaration {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
}

.terms-declaration h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.terms-declaration p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Terms Acceptance Checkbox Styles */
.terms-acceptance {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--primary-black);
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: var(--secondary-gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
    }
    
    .nav-list.active {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--primary-gray);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .evaluation-pricing {
        justify-content: center;
    }
    
    .info-cards,
    .trainers-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .terms-header h3 {
        font-size: 1.5rem;
    }
    
    .rule-item {
        padding: 1rem;
    }
    
    .rule-item h4 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rule-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        margin-right: 0;
    }
    
    .terms-declaration {
        padding: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .checkbox-custom {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .info-card,
    .trainer-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .service-highlight {
        padding: 2rem 1rem;
    }
    
    .modal-content {
        margin: 15% auto;
        padding: 1rem;
    }
    
    .close {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Loading animation for forms */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
