:root {
    --primary-green: #317e67;
    --secondary-coral: #e76c38;
    --light-bg: #f8f8f8;
    --dark-text: #333;
    --light-text: #fff;
    --gray-text: #6b7280;
}
/* Estilos Gerais */
.bold-italic {
  font-weight: bold;
  font-style: italic;
}
/* LGPD Section */
        .lgpd-section {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px auto;
            max-width: 800px;
        }

        .lgpd-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .lgpd-links {
            margin-top: 15px;
        }

        .lgpd-links a {
            color: var(--secondary-coral);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .lgpd-links a:hover {
            color: #d45c2c;
            text-decoration: underline;
        }
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    color: #317e67;
}

.cta-button {
    display: inline-block;
    background-color: #e76c38;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d45b2c;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

header .logo {
    max-width: 200px;
    height: auto;
}

/* Menu de NavegaÃ§Ã£o */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #317e67;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #317e67;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-button {
    background: linear-gradient(45deg, #317e67, #2a6b57);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 126, 103, 0.3);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 126, 103, 0.4);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    background-color: #f8f8f8;
    padding: 120px 20px 80px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 30px;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-date {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
    text-align: center;
}
.hero-left {
    flex: 1;
    text-align: center;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #317e67;
    text-align: center;
    line-height: 1.4;
}

.hero-section .subtitle {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.hero-info{
    background: var(--primary-green);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
    text-align: left;
}

.progress-bar {
    background-color: #ddd;
    border-radius: 5px;
    height: 25px;
    overflow: hidden;
}

.progress {
    background-color: #317e67;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    transition: width 0.5s ease;
}
        /* About Nutritionist */
        .nutritionist-section {
            background-color: var(--light-bg);
        }

        .nutritionist-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas: "image text";
            gap: 60px;
            align-items: center;
        }

        .nutritionist-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-text);
            grid-area: text;
        }

        .nutritionist-text p {
            margin-bottom: 20px;
        }

        .credentials {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .credential-badge {
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            background-color: var(--primary-green);
            color: var(--light-text);
        }

        .nutritionist-image {
            text-align: center;
            grid-area: image;
        }

        .nutritionist-image img {
            max-width: 400px;
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #317e67, #2a6b57);
    padding: 3px;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #317e67, #e76c38);
    border-radius: 20px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.video-container video {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: none;
    border-radius: 17px;
    background: #000;
    object-fit: cover;
    display: block;
}

/* SeÃ§Ã£o de BÃ´nus */
.bonus-badge {
  background-color: var(--secondary-coral);
  color: var(--light-text);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
}
.bonus-section {
    background: linear-gradient(135deg, #317e67 0%, #2a6b57 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

.bonus-section h2 {
    color: #fff;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 50px;
    color: #f0f8f5;
}

.bonus-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    width: 280px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

.floating-card.delay-1 {
    animation-delay: 1s;
}

.floating-card.delay-2 {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bonus-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.bonus-card h3 {
    color: #317e67;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.bonus-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1em;
}

.bonus-urgency {
    text-align: center;
    background: rgba(231, 108, 56, 0.9);
    padding: 25px;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(231, 108, 56, 0.3);
}

.urgency-text {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.urgency-subtext {
    font-size: 1.1em;
    color: #fff;
    opacity: 0.9;
}

.highlight {
    background: linear-gradient(45deg, #fff, #f0f8f5);
    color: #e76c38;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold ;
    font-style: italic;
}
/* Target Audience */
.target-section {
    background-color: var(--primary-green);
    color: var(--light-text);
}

.target-section .section-title {
    color: var(--primary-green);
}

.target-section .section-subtitle {
    color: var(--primary-green);
}
.section.target-section {
  text-align: left;
}
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.target-item {
    background: var(--primary-green);
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-coral);
    font-size: 1.1rem;
}
.target-item i {
    color: var(--secondary-coral); 
    margin-right: 10px;
}

.target-item:hover {
    background-color: var(--secondary-coral);
}

.target-item i {
    color: var(--secondary-coral);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* SeÃ§Ãµes Gerais */
.section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.section:nth-child(even) {
    background-color: var(--light-text);
}
.benefits-section h2{
    color: var(--secondary-coral);
}
.section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    font-style: italic;
}
        /* Benefits */
        .benefits-section {
            background-color: var(--light-bg);
        }

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

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-coral);
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-green);
        }

        .benefit-description {
            color: var(--gray-text);
            line-height: 1.6;
        }
/* Bloco de ConexÃ£o Emocional */
.emotional-points p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #666;
}

.emotional-conclusion {
    font-style: italic;
    margin-top: 40px;
    font-size: 1.2em;
    color: #444;
}

/* SeÃ§Ã£o "Esse Desafio Ã© Para VocÃª se..." */
.for-you-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.for-you-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #e76c38;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.1em;
}
.for-you-list li i {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-top: 5px;
}
/* SeÃ§Ã£o "VocÃª vai aprender a:" */
.learn-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.learn-list li {
    background-color: #317e67;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: left;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SeÃ§Ã£o "O que vocÃª vai receber" (Slides) */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.slide h3 {
    color: #e76c38;
    margin-bottom: 10px;
}

.slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 100;
}

.slider-container .prev-slide {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.slider-container .next-slide {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* SeÃ§Ã£o de PreÃ§o */
.price-section {
    /*background-color: #317e67;*/
    color: #fff;
    padding: 80px 0;
}

.price-section h2 {
    color: var(--primary-green)
}

.price-box {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.price-box .old-price {
    text-decoration: line-through;
    font-size: 1.2em;
    color: #777;
}

.price-box .current-price {
    font-size: 3em;
    color: #e76c38;
    font-weight: bold;
    margin: 10px 0;
}

.price-box .installments {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.price-box .cta-button {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.price-box .guarantee {
    font-size: 0.9em;
    color: #666;
}
/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
/* versão 2 */
/* Included Section with Slides */
.included-section1 {
    background: var(--primary-green) !important;
    color: white;
}

        .included-section1 .section-title {
            color: white;
        }

        .slides-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
        }

        .slide1 {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            text-align: center;
            border-radius: 15px;
            animation: slideIn 0.5s ease-in-out;
        }

        .slide1.active {
            display: block;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .slide-icon {
            font-size: 3rem;
            color: #e76c38;
            margin-bottom: 20px;
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--light-text);
        }

        .slide-description {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .slides-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #e76c38;
            transform: scale(1.2);
        }
/* versão 2 fim */

/* What's Included */
.included-section {
    background: white;
}

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

.included-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.included-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.included-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    
}

.included-content p {
    color: #6b7280;
    line-height: 1.6;
}
/* CTA Alternados */
.cta-alternate {
    text-align: center;
    padding: 40px 20px;
}

.cta-alternate:nth-child(even) {
    background: #f8f8f8;
}

.cta-alternate:nth-child(odd) {
    background: white;
}
/* About Section */
.about-section {
    background-color: var(--light-bg);
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.about-text p {
    margin-bottom: 20px;
}

.highlight-box {
    background-color: var(--secondary-coral);
    color: var(--light-text);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}
/* SeÃ§Ã£o "Quem estÃ¡ por trÃ¡s desse desafio" */
.nutri-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.nutri-profile .nutri-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #317e67;
}

.nutri-profile .nutri-text {
    text-align: left;
    max-width: 700px;
}

.nutri-profile .nutri-text h2 {
    text-align: center;
    margin-bottom: 20px;
}

.nutri-profile .nutri-text ul {
    list-style: none;
    padding: 0;
}

.nutri-profile .nutri-text ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* FAQ */
        .faq-section {
            background-color: var(--primary-green) !important;
            color: var(--light-text);
        }

        .faq-section .section-title {
            color: var(--light-text);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        .faq-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--secondary-coral);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px 25px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

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

        /* Footer */
        .footer {
            background-color: var(--dark-text);
            color: var(--light-text);
            text-align: center;
            padding: 60px 0 40px;
        }

        .footer h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .footer p {
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .footer .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
            margin-top: 30px;
        }

        /* Social Media */
        .social-links {
            margin: 30px 0;
        }

        .social-links h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--secondary-coral);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: var(--light-text);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #2a6a56;
            transform: translateY(-3px);
        }

/* Modals */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* FormulÃ¡rio de InscriÃ§Ã£o Modal */
.enrollment-modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enrollment-modal label {
    text-align: left;
    font-weight: bold;
}

.enrollment-modal input[type="text"],
.enrollment-modal input[type="email"],
.enrollment-modal input[type="tel"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.consent-checkbox input[type="checkbox"] {
    width: auto;
}

.consent-checkbox a {
    color: #e76c38;
    text-decoration: none;
}

.enrollment-modal .cta-button {
    margin-top: 20px;
}

/* BotÃ£o Flutuante */
.floating-cta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e76c38;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.floating-cta-button:hover {
    background-color: #d45b2c;
}

/* Responsividade */
@media (max-width: 768px) {
    .final-cta .btn-primary {
        display: block;       /* faz o botão ocupar linha inteira */
        width: 100%;          /* ocupa 100% da largura do contêiner */
        white-space: normal;  /* permite quebra se o texto for muito grande */
    }
    /* Header responsivo */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .nav-links a {
        font-size: 1.2em;
        font-weight: 600;
    }

    .nav-cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }

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

    /* Hero responsivo */
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }
    .hero-right {
        width: 100%;
        margin-top: 20px; /* espaço entre texto e vídeo */
        }
    .hero-section h1 {
        font-size: 2em;
        text-align: center;
    }

    .hero-section .subtitle {
        font-size: 1.2em;
        text-align: center;
    }

    .hero-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .progress-bar-container {
        text-align: center;
    }

    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    .included-grid {
        grid-template-columns: 1fr; /* apenas uma coluna */
    }
    
    .about-content {
        grid-template-columns: 1fr; /* apenas uma coluna */
    }

    .about-image {
        margin-top: 20px; /* espaço entre texto e imagem */
    }
    .nutritionist-content {
        grid-template-columns: 1fr; /* só uma coluna */
        gap: 30px; /* opcional: espaço menor entre imagem e texto no mobile */
        grid-template-areas: 
        "text"
        "image";
    }

    .nutritionist-text {
        text-align: center; /* opcional: centralizar texto no mobile */
    }
    /* Responsividade da seÃ§Ã£o de bÃ´nus */
    
    .bonus-section h2 {
        font-size: 2em;
    }

    .bonus-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .bonus-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .bonus-card {
        width: 90%;
        max-width: 320px;
    }

    .bonus-urgency {
        margin: 0 20px;
        padding: 20px;
    }

    .urgency-text {
        font-size: 1.2em;
    }

    .urgency-subtext {
        font-size: 1em;
    }

    .for-you-list li {
        padding: 15px;
    }

    .learn-list li {
        width: 100%;
    }

    .nutri-profile {
        flex-direction: column;
    }

    .nutri-profile .nutri-photo {
        margin-bottom: 20px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .floating-cta-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1em;
    }
    .target-grid{
        grid-template-columns: 1fr;
    }
    .target-list {
    max-width: 800px;
    margin: 0 auto;
    }
}
        /* Final CTA */
        .final-cta {
            background-color: var(--secondary-coral);
            color: var(--light-text);
            text-align: center;
            padding: 80px 0;
        }

        .final-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            color: var(--light-text);
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .final-cta .highlight-text {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 40px;
        }

        .final-cta .btn-primary {
            background-color: var(--primary-green);
            color: var(--light-text);
            font-size: 1.3rem;
            padding: 20px 40px;
            margin-bottom: 20px;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            /*white-space: nowrap; /* impede quebra de linha */
        }

        .final-cta .btn-primary:hover {
            background-color: #2a6a56; /* Tom mais escuro do verde */
        }

        .final-cta .urgency-text {
            font-size: 1rem;
            opacity: 0.8;
        }
/* Footer */
        .footer {
            background-color: var(--dark-text);
            color: var(--light-text);
            text-align: center;
            padding: 60px 0 40px;
        }

        .footer h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .footer p {
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .footer .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
            margin-top: 30px;
        }

        /* Social Media */
        .social-links {
            margin: 30px 0;
        }

        .social-links h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--secondary-coral);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: var(--light-text);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #2a6a56;
            transform: translateY(-3px);
        }