/* Base Reset & Variables */
:root {
    --primary: #c37b67;
    /* Alterado para um tom mais terroso/rosado para a Francisca */
    --primary-hover: #a86551;
    --secondary: #f4e1e6;
    --text-dark: #2d2a2a;
    --text-light: #5e5959;
    --bg-light: #fdfafb;
    --bg-white: #ffffff;
    --whatsapp: #25D366;
    --whatsapp-hover: #1EBE5D;
    --font-main: 'Outfit', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(195, 123, 103, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-contrast {
    background-color: var(--secondary);
}

.box-shadow-xl {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(195, 123, 103, 0.3);
}

.text-white {
    color: white !important;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-inverted {
    background-color: var(--bg-white);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-inverted:hover {
    background-color: var(--primary-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 101, 81, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(195, 123, 103, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(195, 123, 103, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(195, 123, 103, 0);
    }
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

/* Hero Section */
.hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta-wrapper {
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.hero-image img {
    border-radius: var(--border-radius-md);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

@media(min-width: 900px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
    }

    .hero-text {
        text-align: left;
        flex: 1;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        flex: 1;
    }
}

/* Identification */
.target-container {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.benefits-list li:hover {
    transform: translateX(5px);
}

.benefits-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* What you learn */
.wyl-container {
    text-align: center;
}

.grid-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.grid-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

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

.icon-check {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.grid-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

@media(min-width: 600px) {
    .grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 900px) {
    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Result */
.result-section {
    background: url('assets/img/hero.avif') center/cover no-repeat;
    position: relative;
    padding: 6rem 0;
}

.result-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(195, 123, 103, 0.85);
    /* Terroso */
    backdrop-filter: blur(5px);
}

.result-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blur-bg {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
}

.result-text {
    color: white;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

/* CTA Pricing */
.cta-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media(min-width: 800px) {
    .cta-flex {
        flex-direction: row;
        text-align: left;
    }

    .cta-content,
    .about-text {
        padding-left: 2rem;
        flex: 1;
    }
}

.mc-icon {
    font-size: 1rem;
}

/* About Me */
.about-me {
    background: var(--bg-light);
}

/* FAQ */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-light);
}

.faq-answer p {
    margin-bottom: 1.25rem;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    border-radius: var(--border-radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 80vh;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    flex-wrap: wrap;
    /* Allows dots to wrap on mobile if there are many */
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 650px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        opacity: 0.9;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}