/* ==================== RESET E VARIÁVEIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --text-red: #ff3333;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h3 {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-sm);
        display: none;
        z-index: 99;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-color);
        font-size: 16px;
    }

    .logo {
        font-size: 20px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero h1 {
    font-size: 40px;
    line-height: 1.1;
    color: var(--dark-color);
    font-weight: 700;
}

.hero h3 {
    font-size: 25px;
    line-height: 1.1;
    color: var(--text-light);
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.highlight2 {
    color: var(--text-red);
}

.texto-cortado {
    text-decoration: line-through;
    text-decoration-color: var(--text-red);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-subtitle-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f9f6;
    border: 2px solid var(--primary-color);
    padding: 15px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-badge-item:hover {
    background: #e8f7f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.badge-icon {
    font-size: 24px;
    min-width: 24px;
}

.badge-text {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.hero-badge {
    position: absolute;
    /*bottom: 20px;
    left: 20px;*/
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.secure-purchase-badge {
    max-width: 400px;
    height: auto;
    margin-top: 10px;
}

.secure-purchase-badge-little {
    max-width: 260px;
    height: auto;
    margin-top: 10px;
}

.price-section {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.price-original {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge-inline {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.decimal {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.price-info {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.urgency {
    background: #fff3cd;
    padding: 15px;
    border-radius: var(--radius);
    border-left: 4px solid #ffc107;
}

.stock {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stock .icon {
    font-size: 24px;
}

.stock strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 3px;
}

.stock p {
    color: var(--text-light);
    font-size: 13px;
}

.price-section-titulo {
    text-align: left;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: bold;
}

.frete-badge {
    /*position: absolute;
    bottom: 20px;
    left: 1px;*/
    background: var(--primary-color);
    color: white;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.guarantee {
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
    font-weight: bold;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specialist-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
}

.specialist-badge {
    position: absolute;
    bottom: 20px;
    left: 1px;
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-thumb {
        height: 70px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badges-container {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 40px;
    }

    .nav {
        display: none;
    }
}

/* ==================== PRODUCT GALLERY SECTION ==================== */
.product-gallery-section {
    padding: 60px 20px;
    background: white;
}

.product-gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
}

.product-gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-card {
    width: 100%;
    max-width: 900px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.floating-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.carousel-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity 0.5s ease;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot:hover {
    border-color: var(--primary-color);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.price-side {
    display: flex;
    flex-direction: column;
}

.product-gallery-section .price-section {
    background: #f8f9fa;
    padding: 30px;
    border: none;
    border-radius: 12px;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
}

.urgency-compact {
    margin: 15px 0;
    padding: 12px;
}

.urgency-compact .stock {
    gap: 10px;
}

.urgency-compact .icon {
    font-size: 20px;
}

.urgency-compact strong {
    font-size: 14px;
    margin-bottom: 2px;
}

.urgency-compact p {
    font-size: 12px;
}

.security-text {
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .floating-card {
        margin: 0 20px;
        padding: 20px;
    }

    .floating-card-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .carousel-container {
        min-height: 280px;
    }
}

.product-gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-product {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius);
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 450px;
}

.gallery-thumb {
    border: 3px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    padding: 0;
    height: 80px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-thumb:hover {
    border-color: var(--text-light);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
}

.product-gallery-section .price-section {
    padding: 30px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-gallery-content {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        max-width: 100%;
    }

    .main-product {
        max-width: 100%;
    }
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: 70px 0;
    background: #fff5f5;
}

.problem-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

.problem-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 500;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.problem-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.problem-item h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.problem-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== IMPACT SECTION ==================== */
.impact-section {
    padding: 70px 0;
    background: white;
}

.impact-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark-color);
}

.impact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 500;
}

.impact-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
}

.timeline-step {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 15px;
}

.timeline-item h4 {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 600;
}

.impact-conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    padding: 25px;
    background: #fff3cd;
    border-radius: var(--radius);
    border-left: 4px solid #ffc107;
}

/* ==================== IDENTIFICATION SECTION ==================== */
.identification-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.identification-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.symptom-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.symptom-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.symptom-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.symptom-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.symptom-card p {
    color: var(--text-light);
    font-size: 13px;
}

.identification-conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    padding: 25px;
    background: #e6f7f2;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

/* ==================== WARNING SECTION ==================== */
.warning-section {
    padding: 70px 0;
    background: white;
}

.warning-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.warning-content {
    max-width: 700px;
    margin: 0 auto;
}

.warning-intro {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.warning-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.warning-list li {
    font-size: 16px;
    color: var(--text-color);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.warning-highlight {
    background: #fff3cd;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid #ffc107;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 30px;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.solution-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.solution-content > p:first-child {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 500;
}

.solution-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.activity {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.activity:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.activity span {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.activity p {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.solution-conclusion {
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ==================== EMPOWERMENT SECTION ==================== */
.empowerment-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #e6f7f2 0%, #f0f9f6 100%);
}

.empowerment-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.empowerment-message {
    max-width: 700px;
    margin: 0 auto;
}

.empowerment-text {
    font-size: 18px;
    color: var(--text-color);
    padding: 15px 0;
    line-height: 1.6;
    font-weight: 500;
}

.empowerment-note {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 35px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .problem-section h2,
    .impact-section h2,
    .identification-section h2,
    .warning-section h2,
    .solution-section h2,
    .empowerment-section h2 {
        font-size: 32px;
    }

    .problem-intro,
    .impact-intro,
    .solution-content > p:first-child {
        font-size: 16px;
    }

    .impact-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .empowerment-text {
        font-size: 16px;
    }
}

/* ==================== QUICK BENEFITS ==================== */
.quick-benefits {
    padding: 50px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: white;
}

.benefit-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: 70px 0;
    background: white;
}

.benefits h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
    text-align: left;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.benefits-image {
    display: flex;
    justify-content: center;
}

.benefits-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .benefits h2 {
        font-size: 32px;
    }
}

/* ==================== IDEAL FOR SECTION ==================== */
.ideal-for {
    padding: 70px 0;
    background: #f8f9fa;
}

.ideal-for h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sport-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.sport-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
}

.sport-card h3 {
    padding: 15px;
    text-align: center;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
}

.sports-note {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.sports-banner {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.sports-banner img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ==================== SPECS SECTION ==================== */
.specs {
    padding: 70px 0;
    background: white;
}

.specs h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.specs-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.spec-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .specs-content {
        grid-template-columns: 1fr;
    }

    .specs h2 {
        font-size: 32px;
    }

    .injury-risk h2,
    .experts-section h2 {
        font-size: 32px;
    }

    .injury-gallery,
    .experts-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==================== RISKS SECTION ==================== */
.risks {
    padding: 70px 0;
    background: #f8f9fa;
}

.risks h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.risks-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.risk-card {
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.risk-card.without {
    background: #ffe6e6;
    border-top: 4px solid #e74c3c;
}

.risk-card.with {
    background: #e6f7e6;
    border-top: 4px solid var(--primary-color);
}

.risk-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.risk-card ul {
    list-style: none;
}

.risk-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
}

.risk-card.without li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.risk-card.with li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .risks-comparison {
        grid-template-columns: 1fr;
    }

    .risks h2 {
        font-size: 32px;
    }
}

/* ==================== INJURY RISK SECTION ==================== */
.injury-risk {
    padding: 70px 0;
    background: #fff5f5;
}

.injury-risk h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
    font-weight: 500;
}

.injury-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.injury-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid #e74c3c;
}

.injury-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.injury-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.injury-card h3 {
    padding: 20px;
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.injury-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== EXPERTS SECTION ==================== */
.experts-section {
    padding: 70px 0;
    background: white;
}

.experts-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark-color);
}

.experts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expert-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.expert-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center top;
}

.expert-card h3 {
    padding: 20px;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600;
}

.expert-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 70px 0;
    background: white;
}

.testimonials h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
}

/* ==================== VALUE PROPOSITION ==================== */
.value-proposition {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.value-proposition h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border-color);
}

.price-card.original {
    background: white;
}

.price-card.discount {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    position: relative;
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.price-card .label {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.price-card .price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-card.original .price {
    text-decoration: line-through;
    opacity: 0.6;
}

.price-card .description {
    font-size: 13px;
    opacity: 0.8;
}

.savings {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .price-comparison {
        grid-template-columns: 1fr;
    }

    .price-card.discount {
        transform: scale(1);
    }

    .value-proposition h2 {
        font-size: 32px;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 70px 0;
    background: white;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark-color);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
    font-weight: 500;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e8f7f2;
}

.faq-icon {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-answer p {
        padding: 16px;
    }
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-box > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.urgency-final {
    background: #fff3cd;
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    color: #856404;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 30px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box > p {
        font-size: 16px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: #aaa;
    font-size: 12px;
    margin-top: 15px;
}

/* ==================== GERAL ==================== */
h2 {
    color: var(--dark-color);
    font-weight: 700;
}

section {
    position: relative;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 12px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== DARK MODE (OPCIONAL) ==================== */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --text-light: #b0b0b0;
        --light-color: #1a1a1a;
    }

    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .header {
        background: #2a2a2a;
    }

    .benefit-card,
    .hero {
        background: #2a2a2a !important;
    }

    .price-section,
    .testimonial-card,
    .risk-card.original,
    .cta-box {
        background: #2a2a2a !important;
    }
}
