/* Version: 1.0.1 - Fix CSS encoding and styles */
/* --- Variáveis de Cores (Paleta Solicitada) --- */
:root {
    --rosa-queimado: #C58C72;
    /* Argila quente */
    --rosa-medio: #B36A4C;
    /* Terracota */
    --rosa-escuro: #1F2B25;
    /* Verde profundo (autoridade) */
    --dourado: #B08D57;
    /* Latão fosco */
    --branco: #FFFFFF;
    /* Branco puro */
    --cinza-fundo: #F6F1EA;
    /* Marfim suave */
    --texto-escuro: #1F1B16;
    /* Carvão quente */
    --texto-suave: #4D4036;
    /* Marrom suave */
}

/* --- Reset e Configurações Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--cinza-fundo);
    background-image:
        radial-gradient(1200px 600px at 85% -10%, rgba(176, 141, 87, 0.14), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(197, 140, 114, 0.18), transparent 55%);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* --- Navegação --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(246, 241, 234, 0.92);
    /* Marfim com transparência */
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(176, 141, 87, 0.25);
    box-shadow: 0 10px 30px rgba(31, 27, 22, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

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

.navbar.scrolled {
    background: rgba(246, 241, 234, 0.98);
    box-shadow: 0 10px 40px rgba(31, 27, 22, 0.12);
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--texto-escuro);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--rosa-queimado);
}

.btn-nav {
    background: var(--rosa-medio);
    color: var(--branco) !important;
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid var(--dourado);
    box-shadow: 0 8px 18px rgba(179, 106, 76, 0.25);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--rosa-escuro);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--texto-escuro);
    background: none;
    border: none;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--rosa-medio);
}

/* --- Hero Section (Profissional) --- */
.hero {
    background: linear-gradient(135deg, #F8F2EA 0%, #EFE3D6 50%, #E7D6C6 100%);
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    overflow: visible;
    width: 100%;
    perspective: 1200px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--branco);
    background-image:
        radial-gradient(circle at 85% 20%, rgba(197, 140, 114, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 65% 65%, rgba(176, 141, 87, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 90% 75%, rgba(197, 140, 114, 0.07) 0%, transparent 28%),
        radial-gradient(ellipse 600px 300px at 95% 30%, rgba(176, 141, 87, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 500px 400px at 70% 80%, rgba(197, 140, 114, 0.06) 0%, transparent 45%),
        conic-gradient(from 45deg at 80% 50%, rgba(176, 141, 87, 0.03) 0deg, transparent 120deg);
    z-index: 0;
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    width: 45%;
    z-index: 10;
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content::before {
    display: none;
}

.hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--texto-escuro);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-content .highlight {
    color: var(--rosa-medio);
    background: linear-gradient(135deg, var(--rosa-escuro), var(--rosa-medio));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--rosa-medio);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: var(--texto-suave);
    margin-bottom: 35px;
    max-width: 100%;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
}

.cta-main {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--rosa-medio) 0%, var(--rosa-escuro) 100%);
    color: var(--branco);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(179, 106, 76, 0.3);
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    cursor: pointer;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 2px solid var(--dourado);
    color: var(--rosa-medio);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(31, 27, 22, 0.08);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    background: var(--branco);
    box-shadow: 0 8px 25px rgba(31, 27, 22, 0.12);
    border-color: var(--rosa-medio);
}

.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(179, 106, 76, 0.4);
    filter: brightness(1.05);
}

.location-text {
    margin-top: 20px;
    color: var(--texto-suave);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    letter-spacing: 0.03em;
}

.location-text i {
    color: var(--dourado);
    font-size: 1.1rem;
}

/* --- Hero Visual (Imagem PNG Direita) --- */
.hero-visual {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) translateZ(0) rotateY(-8deg);
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 15;
    transform-style: preserve-3d;
}

/* --- Formas Decorativas de Fundo do Hero --- */
.hero-deco-circle {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.15) 0%, rgba(197, 140, 114, 0.08) 55%, transparent 75%);
    bottom: 10%;
    right: 8%;
    z-index: 0;
    animation: decoFloat 7s ease-in-out infinite;
    pointer-events: none;
}

/* hero-deco-ring removido (ficava estranho) */
.hero-deco-ring {
    display: none;
}

.hero-deco-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 22%;
    right: 22%;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(176, 87, 146, 0.5) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    border-radius: 50%;
    animation: decoFloat 6s ease-in-out infinite 1.5s;
    pointer-events: none;
}

@keyframes decoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(4deg);
    }
}

/* --- Badges Flutuantes do Hero --- */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(176, 87, 167, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(31, 27, 22, 0.12), 0 2px 8px rgba(176, 141, 87, 0.15);
    z-index: 20;
    white-space: nowrap;
    pointer-events: none;
}

.hero-badge__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(176, 87, 167, 1), rgba(176, 87, 146, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(176, 87, 167, 0.30);
}

.hero-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-badge__text strong {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    color: var(--texto-escuro);
    font-weight: 700;
}

.hero-badge__text span {
    font-size: 0.73rem;
    color: var(--texto-suave);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Posições de cada badge – todos ancorados pelo lado direito (dentro da foto) */
.hero-badge--top {
    top: 17%;
    right: 30%;
    animation: badgeFloat1 5s ease-in-out infinite;
}

.hero-badge--bottom-left {
    bottom: 30%;
    right: 58%;
    animation: badgeFloat2 6.5s ease-in-out infinite 0.8s;
}

.hero-badge--bottom-right {
    bottom: 20%;
    right: 23%;
    animation: badgeFloat3 5.8s ease-in-out infinite 1.6s;
}

@keyframes badgeFloat1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes badgeFloat2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes badgeFloat3 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -50px;
    width: 700px;
    height: 90%;
    background: var(--branco);
    border-radius: 80px;
    z-index: -1;
    box-shadow:
        inset -30px 0 50px rgba(197, 140, 114, 0.08),
        0 40px 100px rgba(31, 27, 22, 0.12);
    clip-path: polygon(-50% 10%, 100% 0%, 100% 100%, -50% 90%);
}

.hero-banner-img {
    width: 140%;
    height: auto;
    max-height: 110vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(31, 27, 22, 0.2));
    animation: floatImage 3s ease-in-out infinite;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.hero-banner-img::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -20%;
    width: 150%;
    height: 110%;
    background:
        linear-gradient(45deg, transparent 45%, rgba(197, 140, 114, 0.15) 48%, rgba(197, 140, 114, 0.15) 52%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(176, 141, 87, 0.12) 48%, rgba(176, 141, 87, 0.12) 52%, transparent 55%),
        radial-gradient(ellipse 800px 600px at 50% 50%, rgba(197, 140, 114, 0.08) 0%, transparent 60%);
    z-index: -1;
    border-radius: 40px;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* --- Marquee (Faixa Contínua) --- */
.marquee-section {
    background: var(--rosa-escuro);
    color: var(--branco);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Seção de Serviços --- */
.services-section {
    padding: 100px 0;
    background: var(--branco);
}

.services-header-refined {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.header-left .tagline {
    color: var(--rosa-medio);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.header-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--texto-escuro);
}

.header-right .mission-text {
    font-size: 1.1rem;
    color: var(--texto-suave);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(31, 27, 22, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(176, 141, 87, 0.1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(31, 27, 22, 0.15);
}

.service-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F2EA 0%, #EFE3D6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img-box img {
    transform: scale(1.08);
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--texto-escuro);
}

.service-body p {
    color: var(--texto-suave);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--rosa-medio);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--rosa-escuro);
    gap: 12px;
}

/* --- Seção Sobre a Especialista --- */
.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: center;
}

.about-info .tagline {
    color: var(--rosa-medio);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.about-info h2 {
    font-size: 2.5rem;
    color: var(--texto-escuro);
    margin-bottom: 10px;
}

.about-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--texto-suave);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-info p {
    color: var(--texto-suave);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(176, 141, 87, 0.2);
    border-bottom: 1px solid rgba(176, 141, 87, 0.2);
    padding: 30px 0;
}

.about-pillar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pillar-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dourado), var(--rosa-queimado));
    color: var(--branco);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(176, 141, 87, 0.3);
}

.pillar-text strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--texto-escuro);
    margin-bottom: 4px;
}

.pillar-text span {
    font-size: 0.9rem;
    color: var(--texto-suave);
    line-height: 1.5;
}

.credentials {
    list-style: none;
    margin-top: 40px;
}

.credentials li {
    color: var(--texto-suave);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.credentials li i {
    color: var(--rosa-medio);
    margin-top: 5px;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.about-shape {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: var(--dourado);
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(-8deg);
    z-index: 0;
}

.about-image-pop {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(31, 27, 22, 0.2);
}

/* --- Responsividade (Tablet e Mobile) --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--cinza-fundo);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px 20px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: -1; /* Imagem primeiro em telas menores */
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 20px 40px;
        display: flex;
        flex-direction: column;
    }

    /* Remove a divisão de cores no hero para mobile, usando uma cor única. */
    .hero::before {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0;
        height: auto;
    }

    .hero-content {
        width: 100%;
        order: 1;
        z-index: 2;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .cta-main,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .location-text {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        order: 2;
        height: auto;
        display: flex;
        justify-content: center;
        position: relative;
        transform: none;
        right: 0;
    }

    .hero-banner-img {
        /* Centraliza a imagem no mobile */
        width: 100%;
        max-width: 420px; /* Limita o tamanho em telas maiores (tablets) */
        height: auto;
        margin: 0 auto;
        transform: scale(1.3); /* Aumenta a imagem no mobile */
        animation: none; /* Remove a animação de flutuação no mobile */
        filter: drop-shadow(0 20px 40px rgba(31, 27, 22, 0.2));
    }

    /* Oculta badges e decorações no mobile */
    .hero-visual::before {
        display: none;
    }

    .hero-badge,
    .hero-deco-circle,
    .hero-deco-ring,
    .hero-deco-dots {
        display: none;
    }

    /* SERVICES GRID */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header-refined {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-left h2 {
        font-size: 1.8rem;
    }

    /* GRIDS */
    .method-grid,
    .solution-grid,
    .authority-grid,
    .process-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand .social-icons,
    .footer-contact-info p {
        justify-content: center;
    }

    /* OUTROS */
    .about-info {
        text-align: center;
    }

    .about-pillars {
        text-align: left;
    }

    .credentials {
        text-align: left;
        display: inline-block;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* --- Seção Ajuda e Crescimento --- */
.growth-section {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
}

.growth-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--texto-suave);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.video-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: var(--rosa-escuro);
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.growth-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.video-card:hover .growth-video {
    transform: scale(1.04);
}

/* Overlay escuro gradiente no fundo do card */
.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(31, 43, 37, 0.55) 0%,
            transparent 45%,
            rgba(31, 43, 37, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
    transition: background 0.4s ease;
}

.video-card:hover::before {
    background: linear-gradient(to top,
            rgba(31, 43, 37, 0.65) 0%,
            transparent 40%,
            rgba(31, 43, 37, 0.20) 100%);
}

/* Botão de play centralizado */
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.video-play-btn .play-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--rosa-medio);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease, opacity 0.35s ease;
    opacity: 0.85;
}

/* Esconde o play quando rodando */
.video-card.playing .video-play-btn {
    opacity: 0;
}

.video-card.playing:hover .video-play-btn {
    opacity: 1;
}

.video-card.playing:hover .video-play-btn .play-icon {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1);
}

/* Ícone de pause quando hover em vídeo tocando */
.video-card.playing .video-play-btn .play-icon i::before {
    content: "\f04c";
    /* fa-pause */
}

.video-card:not(.playing) .video-play-btn .play-icon {
    transform: scale(1);
    opacity: 1;
}

.video-card:not(.playing):hover .video-play-btn .play-icon {
    background: white;
    transform: scale(1.1);
}

/* Badge do número no canto */
.video-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.video-card-label i {
    color: var(--rosa-queimado);
    font-size: 0.7rem;
}

/* Ajuste de Especialidades para 7 cards */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Botão WhatsApp Flutuante --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    background-color: #20BA56;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste mobile para o botão não cobrir conteúdo importante se necessário */
@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
        padding: 0;
        min-width: 55px;
        min-height: 55px;
        max-width: 55px;
        max-height: 55px;
        flex-shrink: 0;
        animation: wa-pulse 2s infinite;
    }

    .floating-wa:hover {
        transform: scale(1.1) translateY(-5px);
    }

    /* Responsividade para seção "Por que escolher" */
    .why-choose-section {
        padding: 60px 0;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .why-card {
        padding: 40px 25px;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .why-card h3 {
        font-size: 1.15rem;
    }

    .why-card p {
        font-size: 0.95rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background: var(--cinza-fundo);
}

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

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

.faq-item {
    background: var(--branco);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(31, 27, 22, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 141, 87, 0.1);
}

.faq-item[open] {
    box-shadow: 0 10px 30px rgba(31, 27, 22, 0.1);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--texto-escuro);
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--rosa-medio);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 25px 20px;
    color: var(--texto-suave);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-item p {
        padding: 0 20px 15px;
    }
}

/* --- Seções Adicionais --- */
.method-section, 
.testimonials-section,
.final-cta-section {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--texto-escuro);
    margin-bottom: 15px;
}

.tagline {
    color: var(--rosa-medio);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

/* Ajustes para Final CTA */
.final-cta-section {
    background: var(--rosa-escuro);
    color: var(--branco);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--branco);
    margin-bottom: 20px;
}

.final-cta-section p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 18px 45px;
    background: var(--rosa-medio);
    color: var(--branco);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--rosa-queimado);
    transform: translateY(-3px);
}

/* --- Seção "Por que Escolher" --- */
.why-choose-section {
    padding: 100px 0;
    background: var(--branco);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: var(--branco);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(31, 27, 22, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(176, 141, 87, 0.1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(31, 27, 22, 0.15);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rosa-medio), var(--rosa-queimado));
    color: var(--branco);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(179, 106, 76, 0.3);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--texto-escuro);
    margin-bottom: 15px;
    font-family: 'Fraunces', serif;
}

.why-card p {
    color: var(--texto-suave);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Seção de Depoimentos --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--branco);
}

.reviews-widget-container {
    margin-top: 60px;
}

/* --- Seção CTA Final --- */
.final-cta-section {
    background: linear-gradient(135deg, var(--rosa-escuro) 0%, #2d3a32 100%);
    color: var(--branco);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 140, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--branco);
    font-family: 'Fraunces', serif;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: var(--rosa-medio);
    color: var(--branco);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(179, 106, 76, 0.4);
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.cta-final:hover {
    background: var(--rosa-queimado);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(179, 106, 76, 0.5);
}

/* --- Footer --- */
.main-footer {
    background: var(--rosa-escuro);
    color: var(--branco);
    padding: 80px 0 30px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

/* Coluna 1: Marca */
.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--rosa-medio);
    border-color: var(--rosa-medio);
    transform: translateY(-3px);
}

/* Colunas: Links e Contato */
.footer-links h4,
.footer-contact-info h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--branco);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--rosa-queimado);
}

.footer-contact-info p {
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: var(--rosa-queimado);
    font-size: 1rem;
}

.footer-addresses {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-addresses p {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* Coluna: Mapa */
.footer-map h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--branco);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* --- Responsividade Footer --- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand .social-icons {
        justify-content: flex-start;
    }

    .footer-contact-info p {
        justify-content: flex-start;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section p {
        font-size: 1rem;
    }
}

/* --- Método Section --- */
.method-section {
    padding: 100px 0;
    background: var(--branco);
}

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

.method-card {
    background: var(--cinza-fundo);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(176, 141, 87, 0.1);
}

.method-card:hover {
    background: var(--branco);
    box-shadow: 0 12px 35px rgba(31, 27, 22, 0.1);
    transform: translateY(-8px);
}

.method-card h3 {
    font-size: 1.2rem;
    color: var(--texto-escuro);
    margin-bottom: 15px;
    font-family: 'Fraunces', serif;
}

.method-card p {
    color: var(--texto-suave);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* --- Highlight Gold --- */
.highlight-gold {
    color: var(--dourado);
}
