image.pnge Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal com zoom */
.main-content {
    zoom: 0.8;
    -moz-transform: scale(0.8);
    -moz-transform-origin: top center;
    width: 100%;
    margin: 0 auto;
}

/* Melhorar qualidade das imagens com scale */
img {
    image-rendering: auto;
    image-rendering: high-quality;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    filter: none;
    -webkit-filter: none;
}

:root {
    /* Paleta de Cores */
    --primary-pink: #BA6043;
    --secondary-pink: #F4A698;
    --accent-pink: #BA6043;
    --soft-beige: #F6E8DC;
    --warm-beige: #D9E6DC;
    --off-white: #FDF7F2;
    --text-dark: #4F4F4F;
    --text-medium: #4F4F4F;
    --text-light: #8A8A8A;
    --whatsapp-green: #25D366;
    --instagram-purple: #E4405F;
    
    /* Tipografia */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 60px 0;
    --container-padding: 0 20px;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    max-width: 500px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: transparent;
    padding: 0;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.1);
}

/* Estilos de texto da logo removidos - usando apenas imagem */

/* Responsive para Logo no Header */
@media (max-width: 768px) {
    .nav-logo-img {
        width: 140px;
        height: auto;
        padding: 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: var(--transition);
}

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

.btn-whatsapp {
    background: #BA6043;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #B56B75;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 123, 132, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background: rgba(201, 123, 132, 0.1);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(201, 123, 132, 0.2);
}

.bar {
    width: 25px;
    height: 3px;
    background: #BA6043;
    margin: 3px 0;
    transition: var(--transition);
}

/* Seção Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    border: none;
    pointer-events: none;
    transform: none;
    transform-origin: center center;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.hero-bg-video.active-video {
    opacity: 1;
    z-index: 2;
}

.hero-bg-video.hidden-video {
    opacity: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    transform: scale(1.01);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 300;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-stars {
    display: flex;
    gap: 5px;
    color: #FFD700;
    font-size: 1.2rem;
}

.hero-stats {
    margin: 0;
}

.stat-highlight {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-pink);
    padding: 15px 30px;
    border: 2px solid var(--accent-pink);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 123, 132, 0.3);
}

.btn-whatsapp-green {
    background: transparent;
    color: #25D366;
    padding: 15px 30px;
    border: 2px solid #25D366;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-whatsapp-green:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Seção Vantagens */
.vantagens {
    padding: 40px 0;
    background: var(--off-white);
}

.vantagens-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vantagens-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.vantagens-text {
    text-align: center;
    max-width: 700px;
}

.vantagens-text .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.vantagens-text .section-title::after {
    left: 0;
    transform: none;
}

.vantagens-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}


.vantagens-cta {
    text-align: center;
    margin-top: 30px;
}

/* Seção Sobre */
.sobre {
    padding: var(--section-padding);
    background: var(--soft-beige);
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.sobre-text {
    text-align: left;
}

.sobre-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.sobre-text .section-title::after {
    left: 0;
    transform: none;
}

.sobre-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}

.section-subtitle-welcome {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sobre-quote {
    background: linear-gradient(135deg, var(--soft-beige), var(--warm-beige));
    border-left: 4px solid var(--primary-pink);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trabalho-section {
    margin-top: 2rem;
}

.trabalho-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direitos-destaque {
    background: var(--accent-pink);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 166, 152, 0.3);
}

.sobre-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 300px;
}

.sobre-image {
    border-radius: 15px;
    overflow: hidden;
    background: var(--warm-beige);
}

.sobre-image:first-child {
    grid-row: 1 / 3;
}

.sobre-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(201, 123, 132, 0.3);
    transition: var(--transition);
}

.sobre-image .image-placeholder:hover {
    transform: scale(1.02);
}

.sobre-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.sobre-image .image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.leandra-photo,
.trabalho-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.leandra-photo:hover,
.trabalho-photo:hover {
    transform: scale(1.05);
}

/* Foto real da Leandra */
.leandra-photo-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--accent-pink);
    position: relative;
}

/* Placeholder para imagens não encontradas */
.depoimento-img,
.placenta-image,
.momento-image,
.leandra-photo-real,
.leandra-main-photo-real {
    position: relative;
}

.depoimento-img:not([src*="unsplash"]):not([src*="imgur"]),
.placenta-image:not([src*="unsplash"]):not([src*="imgur"]),
.momento-image:not([src*="unsplash"]):not([src*="imgur"]),
.leandra-photo-real:not([src*="unsplash"]):not([src*="imgur"]),
.leandra-main-photo-real:not([src*="unsplash"]):not([src*="imgur"]) {
    background: linear-gradient(45deg, var(--accent-pink), var(--salmon-soft));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

.depoimento-img:not([src*="unsplash"]):not([src*="imgur"])::after,
.placenta-image:not([src*="unsplash"]):not([src*="imgur"])::after,
.momento-image:not([src*="unsplash"]):not([src*="imgur"])::after,
.leandra-photo-real:not([src*="unsplash"]):not([src*="imgur"])::after,
.leandra-main-photo-real:not([src*="unsplash"]):not([src*="imgur"])::after {
    content: "📸 ADICIONE SUA FOTO AQUI";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.leandra-photo-real:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sobre-image-principal {
    position: relative;
}

.sobre-image-principal::after {
    content: "Leandra Fernandes";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 123, 132, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Nota para foto real */
.leandra-photo-real::before {
    content: "📸 Adicione sua foto real em images/leandra-fernandes-doula.jpg";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.sobre-image-principal:hover .leandra-photo-real::before {
    opacity: 1;
}

.leandra-main-photo-real {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 6px solid rgba(255,255,255,0.9);
    transition: transform 0.3s ease;
}

.leandra-main-photo-real:hover {
    transform: scale(1.02);
}

/* Foto da Leandra acima do nome na seção sobre */
.doula-photo-header {
    text-align: center;
    margin-bottom: 30px;
}

.doula-main-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-pink);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.doula-main-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(201, 123, 132, 0.4);
}

@media (max-width: 768px) {
    .doula-main-photo {
        width: 220px;
        height: 220px;
        border-width: 4px;
    }
    
    .doula-photo-header {
        margin-bottom: 20px;
    }
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--accent-pink);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-pink);
    border-radius: 2px;
}

.sobre-bio {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.sobre-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--accent-pink);
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: var(--warm-beige);
    border-radius: 15px;
    border-left: 4px solid var(--accent-pink);
}

.sobre-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Seção Como Funciona */
.como-funciona {
    padding: 40px 0;
    background: var(--warm-beige);
}

.como-funciona-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pacote-card {
    background: linear-gradient(135deg, var(--off-white), #ffffff);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--warm-beige);
}

.pacote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pacote-destaque {
    border: 3px solid var(--primary-pink);
    position: relative;
}

.pacote-destaque::before {
    content: "MAIS PROCURADO";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.pacote-header {
    text-align: center;
    margin-bottom: 20px;
}

.pacote-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.pacote-price {
    margin-bottom: 15px;
}

.price-main {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-pink);
    display: block;
}

.pacote-image {
    margin-bottom: 25px;
    text-align: center;
}

.pacote-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pacote-beneficios {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pacote-beneficios li {
    padding: 8px 0;
    border-bottom: 1px solid var(--warm-beige);
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-medium);
}

.pacote-beneficios li:last-child {
    border-bottom: none;
}

.pacote-beneficios li strong {
    color: var(--primary-pink);
}

.pacote-bonus {
    background: var(--soft-beige);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-pink);
}

.pacote-bonus p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pacote-payment {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

.pacote-payment p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Pacotes Avulsos */
.pacotes-avulsos {
    background: var(--soft-beige);
    padding: 60px 0;
}

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

.avulso-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--warm-beige);
}

.avulso-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.avulso-pagamento {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: white;
    border: 3px solid var(--accent-pink);
}

.avulso-pagamento .avulso-title {
    color: white;
}

.avulso-pagamento .avulso-price-multiple div {
    color: white;
}

.avulso-header {
    text-align: center;
    margin-bottom: 20px;
}

.avulso-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.avulso-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.avulso-price-multiple {
    margin-bottom: 15px;
}

.avulso-price-multiple div {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.avulso-image {
    margin-bottom: 20px;
    text-align: center;
}

.avulso-img {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.avulso-img-large {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.avulso-img-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.avulso-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avulso-content li {
    padding: 6px 0;
    border-bottom: 1px solid var(--warm-beige);
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.3;
}

.avulso-content li:last-child {
    border-bottom: none;
}

.avulso-content h4 {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.avulso-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Seção Inspiração */
.inspiracao {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    padding: 80px 0;
    color: white;
}

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

.inspiracao-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leandra-main-photo {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 5px solid white;
}

.inspiracao-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.inspiracao-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.direitos-final {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.inspiracao-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-inspiracao {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-pink);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.btn-inspiracao:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.btn-inspiracao i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .inspiracao-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .inspiracao-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .inspiracao-title {
        font-size: 2rem;
    }
    
    .leandra-main-photo {
        max-width: 300px;
        height: 400px;
    }
}

.atendimento-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.atendimento-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.block-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.block-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-pink);
    margin: 0;
    text-align: center;
}

.block-image {
    background: var(--soft-beige);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 150px;
    margin-bottom: 15px;
}

.block-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(201, 123, 132, 0.3);
}

.block-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.block-image .image-placeholder p {
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.block-list {
    flex-grow: 1;
}

.block-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.block-list li {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.block-list li::before {
    content: '•';
    color: var(--accent-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.atendimento-cta {
    text-align: center;
    margin-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.servico-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(248, 187, 217, 0.2);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(248, 187, 217, 0.2);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.servico-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.servico-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-servico {
    background: var(--secondary-pink);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-servico:hover {
    background: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 123, 132, 0.3);
}

/* Seção Depoimentos */
.depoimentos {
    padding: 40px 0;
    background: var(--off-white);
}

.depoimentos-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Depoimentos WhatsApp Style */
.depoimento-whatsapp {
    background: linear-gradient(135deg, #dcf8c6, #e8f5e8);
    border: 2px solid #25d366;
    padding: 20px;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #128c7e;
    font-weight: 600;
}

.whatsapp-header i {
    font-size: 1.2rem;
    color: #25d366;
}

.whatsapp-messages {
    margin-bottom: 15px;
}

.whatsapp-message {
    background: white;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    position: relative;
}

.whatsapp-message.highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    font-weight: 600;
    border-left: 4px solid #25d366;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-message::after {
    content: "✓✓";
    position: absolute;
    bottom: 5px;
    right: 8px;
    font-size: 0.7rem;
    color: #128c7e;
}

/* Depoimentos com foto */
.depoimento-foto {
    padding: 15px;
    text-align: center;
}

.depoimento-image-large {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.depoimento-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-image {
    margin-top: 15px;
    text-align: center;
}

.depoimento-img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.depoimento-card {
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: var(--transition);
    max-width: 100%;
    margin-bottom: 15px;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
}

.depoimento-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.depoimento-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    font-style: italic;
}

.depoimento-author {
    border-top: 1px solid var(--soft-beige);
    padding-top: 15px;
    text-align: center;
}

.depoimento-author strong {
    font-size: 0.9rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.depoimento-author strong {
    font-size: 1rem;
    display: block;
}


/* Rodapé */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-social h4 {
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:first-child {
    background: var(--instagram-purple);
}

.social-link:last-child {
    background: var(--whatsapp-green);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-bg-video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        transform-origin: center center;
    }
    
    .hero-bg-video.active-video {
        opacity: 1;
        z-index: 2;
    }

    .hero-bg-video.hidden-video {
        opacity: 0;
        z-index: 1;
    }
    
    .hero-bg-image {
        filter: contrast(1.15) brightness(1.1) saturate(1.2) unsharp-mask(amount: 1.5);
        transform: scale(1.02);
    }
    
    .hero-bg-fallback {
        filter: blur(2px);
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .hero-content {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .vantagens {
        padding: 30px 0;
    }
    
    .vantagens-content {
        max-width: 90%;
    }
    
    .vantagens-grid {
        display: flex;
        justify-content: center;
    }

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

    .vantagens-text .section-title {
        text-align: center;
    }

    .vantagens-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vantagens-text p {
        font-size: 0.9rem;
        text-align: justify;
    }
    

    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .sobre-text .section-title {
        text-align: center;
    }

    .sobre-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sobre-images {
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sobre-image:first-child {
        grid-row: 1 / 2;
    }

    .atendimento-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .atendimento-block {
        padding: 20px;
    }

    .block-title {
        font-size: 1.1rem;
    }

    .block-image {
        height: 120px;
        margin-bottom: 10px;
    }

    .block-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    /* Responsivo para Tablets - Manter 2 colunas */
    @media (max-width: 1024px) and (min-width: 769px) {
        .depoimentos-grid {
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            max-width: 1200px;
        }
        
        .depoimento-card {
            padding: 15px;
        }
        
        .whatsapp-message {
            padding: 10px 12px;
            font-size: 0.85rem;
        }
    }
    
    /* Mobile - Duas colunas */
    @media (max-width: 768px) {
        .depoimentos-grid {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .depoimento-card {
            padding: 12px;
        }
        
        .whatsapp-message {
            padding: 8px 10px;
            font-size: 0.8rem;
            line-height: 1.3;
        }
        
        .whatsapp-header {
            gap: 6px;
            margin-bottom: 8px;
            font-size: 0.75rem;
        }
    }

    .depoimento-card {
        padding: 20px;
    }

    
    .block-content {
        grid-template-columns: 1fr;
    }
    
    .block-list {
        grid-column: 1;
    }
    
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--off-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-item {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sobre-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }


    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-highlight {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .servico-card {
        padding: 30px 20px;
    }


    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Utilitários */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll suave para navegação */
html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

/* Garantir que as seções não fiquem escondidas atrás do header fixo */
section {
    scroll-margin-top: 50px;
}

/* Ajuste específico para mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 50px;
    }
    
    section {
        scroll-margin-top: 50px;
    }
}

/* ===== BOTÃO SHARE EXPANSIVO ===== */
.share-button-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.share-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #BA6043;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(201, 123, 132, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 123, 132, 0.6);
}

.share-button.active {
    background: #ff4757;
    transform: rotate(45deg);
}

.share-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.share-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.share-option.whatsapp {
    background: #25d366;
    animation-delay: 0.1s;
}

.share-option.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    animation-delay: 0.2s;
}

.share-option:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-option.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.share-option.instagram:hover {
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

/* Animação para aparecer */
.share-options.active .share-option {
    animation: slideInUp 0.3s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Tooltip para os botões */
.share-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.share-option:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Responsivo */
@media (max-width: 768px) {
    .share-button-container {
        bottom: 20px;
        right: 20px;
    }
    
    .share-button {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
    
    .share-options {
        bottom: 70px;
    }
    
    .share-option {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .share-option::before {
        right: 55px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}


/* ===== POP-UP DE OFERTA ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.5s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--accent-pink);
}

.popup-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--salmon-soft));
    color: white;
    border-radius: 20px 20px 0 0;
}

.popup-header h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.popup-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-offer {
    margin-bottom: 25px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.popup-body p {
    margin: 5px 0;
    color: #666;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.popup-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: white;
}

.popup-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== SEÇÃO FAQ ===== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-main);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    flex: 1;
}

.faq-icon {
    color: var(--accent-pink);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--neutral-light);
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== SEÇÃO ORÇAMENTO ===== */
.orcamento {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--bg-main) 100%);
}

.orcamento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.form-orcamento {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-orcamento {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-orcamento:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.orcamento-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin: 0 0 20px;
    color: var(--accent-pink);
    font-size: 1.2rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    color: var(--text-color);
}

.info-card p {
    margin: 10px 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== GALERIA LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}


/* ===== SEÇÃO MITOS VS VERDADES ===== */
.mitos-verdades {
    padding: var(--section-padding);
    background: var(--bg-main);
}

/* Layout de Balõezinhos Sonhadores */
.mitos-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 900px;
    margin-top: 40px;
    padding: 60px;
    overflow: visible;
}

.mitos-image-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mitos-main-image {
    width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 35px 80px rgba(0,0,0,0.3));
    border-radius: 50%;
    z-index: 5;
    transition: all 0.3s ease;
    animation: imageFloat 6s ease-in-out infinite;
    transform: translateY(0px);
}

.mitos-balloons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.balloon {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    min-width: 160px;
    max-width: 220px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border: 1px solid rgba(186, 96, 67, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.balloon:hover {
    transform: scale(1.08) translateY(-8px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
}

.balloon-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 6px 0;
    font-weight: 600;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.balloon-header.mito {
    color: #e74c3c;
}

.balloon-header.verdade {
    color: #25D366;
}

.balloon p {
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left;
}

.balloon-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Posicionamento Organizado: Mitos à Esquerda, Verdades à Direita */
/* MITOS - Lado Esquerdo */
.balloon-1 {
    top: 8%;
    left: 5%;
    transform: rotate(-5deg);
    animation: dreamFloat 8s ease-in-out infinite;
}

.balloon-2 {
    top: 25%;
    left: 8%;
    transform: rotate(2deg);
    animation: dreamFloat 9s ease-in-out infinite 1.2s;
}

.balloon-3 {
    top: 45%;
    left: 5%;
    transform: rotate(-3deg);
    animation: dreamFloat 7s ease-in-out infinite 1.5s;
}

.balloon-4 {
    top: 65%;
    left: 8%;
    transform: rotate(4deg);
    animation: dreamFloat 10s ease-in-out infinite 2.8s;
}

.balloon-5 {
    bottom: 25%;
    left: 5%;
    transform: rotate(-2deg) scale(0.85);
    animation: dreamFloat 8.5s ease-in-out infinite 3.8s;
    max-width: 150px;
    min-width: 140px;
    padding: 8px 12px;
    font-size: 0.7rem;
}

.balloon-6 {
    bottom: 8%;
    left: 8%;
    transform: rotate(3deg);
    animation: dreamFloat 9.5s ease-in-out infinite 4.8s;
}

/* VERDADES - Lado Direito */
.balloon-1-resp {
    top: 8%;
    right: 5%;
    transform: rotate(3deg);
    animation: dreamFloat 8s ease-in-out infinite 0.8s;
}

.balloon-2-resp {
    top: 25%;
    right: 8%;
    transform: rotate(-3deg);
    animation: dreamFloat 9s ease-in-out infinite 2s;
}

.balloon-3-resp {
    top: 45%;
    right: 5%;
    transform: rotate(2deg);
    animation: dreamFloat 7s ease-in-out infinite 2.3s;
}

.balloon-4-resp {
    top: 65%;
    right: 8%;
    transform: rotate(-4deg);
    animation: dreamFloat 10s ease-in-out infinite 3.5s;
}

.balloon-5-resp {
    bottom: 25%;
    right: 5%;
    transform: rotate(2deg) scale(0.9);
    animation: dreamFloat 8.5s ease-in-out infinite 4.2s;
    max-width: 180px;
    min-width: 160px;
    padding: 8px 12px;
    font-size: 0.7rem;
}

.balloon-6-resp {
    bottom: 8%;
    right: 8%;
    transform: rotate(-3deg);
    animation: dreamFloat 9.5s ease-in-out infinite 5.5s;
}

/* Balão 5 - Headers e textos específicos */
.balloon-5 .balloon-header {
    font-size: 0.65rem !important;
    margin: 0 0 4px 0 !important;
    gap: 3px !important;
}

.balloon-5 p {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.balloon-5-resp .balloon-header {
    font-size: 0.65rem !important;
    margin: 0 0 4px 0 !important;
    gap: 3px !important;
}

.balloon-5-resp p {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

/* Animação de Flutuação da Imagem Principal */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Animação de Flutuação Sonhadora */
@keyframes dreamFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(1deg) scale(1.02);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg) scale(1);
    }
    75% {
        transform: translateY(-8px) rotate(0.5deg) scale(0.98);
    }
}

/* Animação de Flutuação Simples para Hover */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mito-header, .verdade-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.mito-header {
    background: #ff6b6b;
    color: white;
}

.verdade-header {
    background: #51cf66;
    color: white;
}

.mito-content, .verdade-content {
    padding: 20px;
    line-height: 1.6;
}

.mito-content {
    background: #ffe0e0;
    font-style: italic;
}

.verdade-content {
    background: #e0ffe0;
}

.btn-mitos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-pink);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-mitos:hover {
    background: var(--salmon-soft);
    transform: translateY(-2px);
    color: white;
}


/* ===== CARROSSEL 3D DE PACOTES ===== */
.pacotes-carousel {
    padding: var(--section-padding);
    background: var(--bg-main);
    overflow: hidden;
}

.carousel-3d-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 900px;
    perspective: 1500px;
    perspective-origin: 50% 50%;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.carousel-card {
    position: absolute;
    width: 450px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) translateZ(-300px) rotateY(60deg);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0.3;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.carousel-card.active {
    transform: translateX(-50%) translateY(-50%) translateZ(100px) rotateY(0deg);
    opacity: 1;
    z-index: 100;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.carousel-card.next {
    transform: translateX(-50%) translateY(-50%) translateZ(-200px) rotateY(-55deg) translateX(300px);
    left: 50%;
    opacity: 0.5;
    z-index: 2;
}

.carousel-card.prev {
    transform: translateX(-50%) translateY(-50%) translateZ(-200px) rotateY(55deg) translateX(-300px);
    left: 50%;
    opacity: 0.5;
    z-index: 2;
}

.carousel-card.far-next,
.carousel-card.far-prev,
.carousel-card.hidden {
    transform: translateX(-50%) translateY(-50%) translateZ(-600px) rotateY(90deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    height: calc(100% - 250px);
    overflow-y: visible;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-pink);
    margin-bottom: 10px;
    text-align: center;
}

.card-price {
    background: linear-gradient(135deg, var(--accent-pink), var(--salmon-soft));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card-price-multiple {
    background: var(--neutral-light);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.card-price-multiple div {
    margin: 3px 0;
    color: var(--accent-pink);
    font-weight: 600;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    padding: 8px 0;
    border-bottom: 1px solid var(--neutral-light);
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
}

.card-content li:before {
    content: "✓";
    color: var(--accent-pink);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Estilos específicos para PACOTES PRINCIPAIS */
.carousel-card[data-type="principal"] .card-content h3 {
    color: #12154C !important;
}

.carousel-card[data-type="principal"] .card-content li:before {
    color: #12154C !important;
}

.carousel-card[data-type="principal"] .card-bonus {
    color: #12154C !important;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-bonus {
    background: var(--soft-highlight);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-pink);
    text-align: center;
}

/* Estilo especial para o card da logo */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-main), var(--neutral-light));
    padding: 20px;
}

.logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-width: 350px;
    max-height: 250px;
    filter: none;
}

.card-tagline {
    background: linear-gradient(135deg, var(--accent-pink), var(--salmon-soft));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.logo-message p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.logo-contact {
    background: var(--soft-highlight);
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
}

.logo-contact p {
    color: var(--accent-pink);
    font-weight: 600;
    margin: 0;
}

.logo-contact i {
    color: #25D366;
    margin-right: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--accent-pink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-pink);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 123, 132, 0.4);
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

.carousel-indicators {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-light);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.indicator.active {
    background: var(--accent-pink);
    opacity: 1;
    transform: scale(1.2);
}

.indicator:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Animação do título */
#carouselTitle, #carouselSubtitle {
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Estilo especial para "PACOTES PRINCIPAIS" */
#carouselTitle.principais-style {
    color: #12154C;
}

/* Estilo normal para "PACOTES AVULSOS" */
#carouselTitle.avulsos-style {
    color: var(--accent-pink);
}

/* Linha pequena azul escura para PACOTES PRINCIPAIS */
#carouselTitle.principais-style::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #12154C;
    margin: 10px auto 0;
}

/* Linha pequena rosa para PACOTES AVULSOS */
#carouselTitle.avulsos-style::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-pink);
    margin: 10px auto 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel-3d-container {
        height: 700px;
        perspective: 1200px;
        max-width: 100%;
    }
    
    .carousel-card {
        width: 320px;
        height: 650px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 20px;
        height: calc(100% - 180px);
        overflow-y: visible;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-card.next {
        left: 50%;
        opacity: 0.4;
        transform: translateX(-50%) translateY(-50%) translateZ(-150px) rotateY(-50deg) translateX(200px);
    }
    
    .carousel-card.prev {
        left: 50%;
        opacity: 0.4;
        transform: translateX(-50%) translateY(-50%) translateZ(-150px) rotateY(50deg) translateX(-200px);
    }
    
    .carousel-card.far-next,
    .carousel-card.far-prev {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-50%) translateY(-50%) translateZ(-400px) rotateY(90deg);
    }
}

/* ===== SEÇÃO QUIZ ===== */
.quiz-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--accent-pink), var(--salmon-soft));
    color: white;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-question h3 {
    color: #BA6043;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quiz-question i {
    color: var(--accent-pink);
    margin-right: 10px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--neutral-light);
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: left;
    width: 100%;
}

.quiz-btn:hover {
    border-color: var(--accent-pink);
    background: var(--neutral-light);
    transform: translateY(-2px);
}

.quiz-btn i {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

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

.result-content i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.result-content h3 {
    color: #BA6043;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-content p {
    color: #BA6043;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-quiz-result {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quiz-result:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: white;
}

.quiz-progress {
    text-align: center;
    margin-top: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 33.33%;
    transition: width 0.5s ease;
}

.progress-text {
    color: white;
    font-size: 0.9rem;
    display: none !important; /* Ocultar completamente */
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ===== RESPONSIVO GERAL ===== */
@media (max-width: 768px) {
    .orcamento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-orcamento {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .avulso-img-large {
        max-width: 100%;
        height: 250px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    /* Novas seções - Mobile */
    .mapa-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mapa-pins {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Responsivo para Tablets */
    @media (max-width: 1024px) and (min-width: 769px) {
        .mitos-main-image {
            width: 450px;
            filter: drop-shadow(0 30px 70px rgba(0,0,0,0.25));
            animation: imageFloat 7s ease-in-out infinite;
        }
        
        .mitos-layout {
            min-height: 1000px;
            padding: 70px;
        }
    }
    
    /* Layout Responsivo dos Balõezinhos Sonhadores */
    .mitos-layout {
        min-height: 700px;
        padding: 30px 15px;
    }
    
    .mitos-main-image {
        width: 380px;
        border-radius: 50%;
        filter: drop-shadow(0 25px 60px rgba(0,0,0,0.22));
        animation: imageFloat 8s ease-in-out infinite;
    }
    
    .balloon {
        min-width: 140px;
        max-width: 180px;
        padding: 10px 14px;
        font-size: 0.7rem;
    }
    
    .balloon-header {
        font-size: 0.65rem;
        gap: 3px;
        margin: 0 0 4px 0;
    }
    
    .balloon p {
        font-size: 0.7rem;
        line-height: 1.15;
        margin: 0;
        padding: 0;
    }
    
    /* Reposicionamento Mobile - Mitos Esquerda, Verdades Direita */
    /* MITOS - Lado Esquerdo Mobile */
    .balloon-1 {
        top: 5%;
        left: 3%;
        transform: rotate(-3deg);
    }
    
    .balloon-2 {
        top: 20%;
        left: 5%;
        transform: rotate(2deg);
    }
    
    .balloon-3 {
        top: 35%;
        left: 3%;
        transform: rotate(-2deg);
    }
    
    .balloon-4 {
        top: 50%;
        left: 5%;
        transform: rotate(3deg);
    }
    
    .balloon-5 {
        bottom: 25%;
        left: 3%;
        transform: rotate(-2deg) scale(0.8);
        max-width: 130px;
        min-width: 120px;
        padding: 6px 10px;
        font-size: 0.65rem;
    }
    
    .balloon-6 {
        bottom: 8%;
        left: 5%;
        transform: rotate(2deg);
    }
    
    /* VERDADES - Lado Direito Mobile */
    .balloon-1-resp {
        top: 5%;
        right: 3%;
        transform: rotate(3deg);
    }
    
    .balloon-2-resp {
        top: 20%;
        right: 5%;
        transform: rotate(-2deg);
    }
    
    .balloon-3-resp {
        top: 35%;
        right: 3%;
        transform: rotate(2deg);
    }
    
    .balloon-4-resp {
        top: 50%;
        right: 5%;
        transform: rotate(-3deg);
    }
    
    .balloon-5-resp {
        bottom: 25%;
        right: 3%;
        transform: rotate(2deg) scale(0.85);
        max-width: 150px;
        min-width: 140px;
        padding: 6px 10px;
        font-size: 0.65rem;
    }
    
    .balloon-6-resp {
        bottom: 8%;
        right: 5%;
        transform: rotate(-2deg);
    }
}

/* Responsivo para Mobile Pequeno */
@media (max-width: 480px) {
    .mitos-main-image {
        width: 300px;
        filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
        animation: imageFloat 9s ease-in-out infinite;
    }
    
    .mitos-layout {
        min-height: 600px;
        padding: 20px 10px;
    }
    
    .balloon {
        min-width: 120px;
        max-width: 160px;
        padding: 8px 12px;
        font-size: 0.65rem;
    }
    
    .balloon-header {
        font-size: 0.6rem;
        gap: 2px;
        margin: 0 0 3px 0;
    }
    
    .balloon p {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

    
    .horarios {
        justify-content: center;
    }
    
    .quiz-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .quiz-btn {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* === NOVOS ESTILOS PARA DEPOIMENTOS REAIS === */

/* Depoimento destaque */
.depoimento-destaque {
    grid-column: span 2;
    background: linear-gradient(135deg, #FDF7F2 0%, #F6E8DC 100%);
    border: 3px solid var(--accent-pink);
}

/* Layout de imagens dos depoimentos */
.depoimento-images {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.depoimento-img {
    width: 70%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.depoimento-img:hover {
    transform: scale(1.05);
}

.depoimento-img-small {
    width: 25%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.depoimento-img-small:hover {
    transform: scale(1.08);
}

/* === ARTE DE PLACENTA === */
.placenta-art-section {
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--bg-main) 100%);
    border-radius: 30px;
    text-align: center;
}

.placenta-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
    font-weight: 600;
}

.placenta-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.placenta-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.placenta-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placenta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.placenta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.placenta-card:hover .placenta-image {
    transform: scale(1.05);
}

.placenta-caption {
    padding: 20px;
    text-align: center;
}

.placenta-text {
    font-style: italic;
    color: var(--accent-pink);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

/* === MOMENTOS ESPECIAIS === */
.momentos-especiais {
    margin-top: 60px;
    padding: 40px 0;
}

.momentos-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.momento-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.momento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.momento-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.momento-card:hover .momento-image {
    transform: scale(1.1);
}

.momento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.momento-card:hover .momento-overlay {
    transform: translateY(0);
}

.momento-overlay p {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* === RESPONSIVO PARA DEPOIMENTOS === */
@media (max-width: 768px) {
    .depoimento-destaque {
        grid-column: span 1;
    }
    
    .depoimento-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .depoimento-img,
    .depoimento-img-small {
        width: 100%;
        height: 180px;
    }
    
    .placenta-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .momentos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .placenta-title,
    .momentos-title {
        font-size: 1.6rem;
    }
    
    .placenta-art-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
}
