@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --primary: #796C3C;        /* Gold Oliva Premium */
    --primary-hover: #5F542E;  /* Dourado mais escuro para hover */
    --secondary: #F8F4EF;      /* Off-White Sand */
    --white: #FFFFFF;          /* Crystal White */
    --dark: #3D3B3A;           /* Charcoal Matt */
    --dark-muted: #5C5857;     /* Grafite suavizado */
    --light-gray: #EBE7E2;     /* Divisores discretos */
    --gray-bg: #FAF8F5;        /* Cinza quente bem suave para contrastes */
    --success: #2E7D32;        /* Verde sutil para sucesso/LGPD */
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 10px 40px rgba(61, 59, 58, 0.05);
    --shadow-button: 0 4px 15px rgba(121, 108, 60, 0.15);
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ==========================================================================
   GRID & LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    height: 70px;
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 1.5px;
    background-color: var(--dark);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   BUTTONS (CTAs)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 108, 60, 0.25);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(248, 244, 239, 0.4) 100%);
}

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

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--dark-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-muted);
    font-weight: 300;
}

/* ==========================================================================
   MANIFESTO / ESSÊNCIA
   ========================================================================== */
.manifesto-text {
    font-family: var(--font-title);
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* ==========================================================================
   ESPECIALIDADES CARDS
   ========================================================================== */
.specialties-grid {
    margin-top: 4rem;
}

.specialty-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.specialty-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.specialty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-image {
    transform: scale(1.06);
}

.specialty-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.specialty-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.specialty-content p {
    color: var(--dark-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.specialty-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--primary);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialty-link span {
    transition: var(--transition-fast);
}

.specialty-link:hover span {
    transform: translateX(5px);
}

/* ==========================================================================
   POR QUE NÓS / DIFERENCIAIS
   ========================================================================== */
.diferencial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition-smooth);
}

.diferencial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.diferencial-card p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   JORNADA DO PACIENTE
   ========================================================================== */
.jornada-timeline {
    position: relative;
    margin-top: 4rem;
}

.jornada-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.2rem;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 10px var(--white);
}

.bg-secondary .timeline-number {
    box-shadow: 0 0 0 10px var(--secondary);
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   DEPOIMENTOS / TESTIMONIALS
   ========================================================================== */

/* --- Tab Navigation --- */
.testimonials-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-muted);
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- Carousel Base --- */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    flex: 0 0 50%;
    min-width: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* --- WhatsApp Bubble Testimonials --- */
.testimonial-whatsapp-bubble {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem 2.2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--white);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.04));
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.bubble-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.bubble-info {
    flex-grow: 1;
}

.bubble-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.bubble-time {
    display: block;
    font-size: 0.75rem;
    color: var(--dark-muted);
    margin-top: 0.15rem;
}

.bubble-icon {
    color: #25D366;
    font-size: 1.3rem;
}

.bubble-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.bubble-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bubble-specialty {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--primary);
    background-color: rgba(121, 108, 60, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* --- Video Testimonials --- */
.video-card {
    max-width: 480px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1rem;
    background-color: var(--dark);
}

.testimonial-video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 500px;
    object-fit: cover;
    background-color: var(--dark);
}

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

.video-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* --- Carousel Controls --- */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

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

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   FAQ (ACCORDION)
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--light-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark);
    padding: 0.5rem 0;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--dark-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO / CAPTAÇÃO
   ========================================================================== */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-text p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

.map-container {
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1);
}

.contact-form-wrapper {
    background-color: var(--secondary);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.form-control {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    color: var(--dark);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(121, 108, 60, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 0.3rem;
}

.form-checkbox span {
    font-size: 0.8rem;
    color: var(--dark-muted);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* ==========================================================================
   LANDING PAGES DE ESPECIALIDADES (ESTILOS COMPLEMENTARES)
   ========================================================================== */
.lp-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    padding-top: calc(var(--header-height) + 2rem);
    position: relative;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-hero-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.lp-hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.lp-highlight-section {
    background-color: var(--gray-bg);
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
    border-left: 3px solid var(--primary);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   BLOG & NOTÍCIAS
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.post-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--light-gray);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.post-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.post-content p {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-link:hover {
    color: var(--primary);
}

/* Artigo Completo */
.article-container {
    max-width: 800px;
    margin: 120px auto 80px auto;
    padding: 0 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.article-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.article-header h1 {
    margin-bottom: 1.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

.article-featured-image {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-medium);
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-body {
    font-size: 1.1rem;
    color: var(--dark-muted);
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 2rem;
}

.article-body h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: var(--dark);
    margin: 3rem 0 1.5rem 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark);
    color: var(--secondary);
    padding: 6rem 0 3rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) sepia(1) saturate(1) hue-rotate(15deg);
}

.footer-desc {
    color: rgba(248, 244, 239, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.8rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(248, 244, 239, 0.7);
}

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

.footer-contact-list {
    list-style: none;
    color: rgba(248, 244, 239, 0.7);
}

.footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 244, 239, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(248, 244, 239, 0.5);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.tech-info {
    font-size: 0.75rem;
    color: rgba(248, 244, 239, 0.4);
}

/* ==========================================================================
   WHATSAPP & FLOATING ACTIONS
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(121, 108, 60, 0.3);
    z-index: 999;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-floating:hover {
    background-color: var(--primary-hover);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 25px rgba(121, 108, 60, 0.4);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(121, 108, 60, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(121, 108, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(121, 108, 60, 0);
    }
}

/* ==========================================================================
   LGPD COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 2rem;
    right: 2rem;
    background-color: var(--white);
    box-shadow: 0 10px 45px rgba(61, 59, 58, 0.15);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    padding: 1.8rem 2.5rem;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    transition: var(--transition-smooth);
}

.cookie-banner.show {
    bottom: 2rem;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--dark-muted);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS (SCROLL EFFECT)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: auto;
        padding: 8rem 0 5rem 0;
        text-align: center;
    }
    
    .hero-bg-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    /* Toggle Icon Animation */
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .jornada-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
        position: relative;
        padding-left: 5rem;
    }
    
    .timeline-number {
        left: 2rem;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        padding: 1.8rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
        left: 1rem;
        right: 1rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .lp-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-hero-image img {
        height: 300px;
    }
    
    .whatsapp-floating {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testimonials-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .testimonial-whatsapp-bubble {
        padding: 1.5rem;
    }
    
    .bubble-text {
        font-size: 0.95rem;
    }
    
    .video-card {
        max-width: 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .testimonial-whatsapp-bubble {
        padding: 1.2rem;
    }
    
    .bubble-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .bubble-text {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}
