/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
   :root {
    /* Paleta de Cores */
    --color-primary: #F7F4EF;      /* Off white (fundo principal) */
    --color-secondary: #1c1a17;    /* Fundo escuro principal */
    --color-card-dark: #3a332b;    /* Fundo de cards em seções escuras */
    --color-accent: #c9a15a;       /* Dourado premium (CTA, destaques) */
    --color-accent-text: #e0c286;  /* Dourado claro (textos em fundo escuro) */
    --color-accent-hover: #b38b4c; /* Dourado escuro para hover */
    --color-text-body: #333333;
    --color-text-light: #f2ede4;   /* Branco quente levemente amadeirado */
    --color-border: #e0dcd3;

    /* Tipografia */
    --font-heading: 'Arimo', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Espaçamentos e Transições */
    --transition: 0.3s ease-in-out;
    --border-radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ==========================================================================
   Tipografia
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1.2;
    font-weight: 700;
}

h1, h2, .section-title {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.bg-dark {
    background-color: var(--color-secondary);
}
.bg-dark .section-title,
.bg-dark p {
    color: var(--color-text-light);
}
.text-light {
    color: var(--color-text-light);
}

.bg-light {
    background-color: #ffffff;
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(184, 150, 90, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 150, 90, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

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

.btn-large {
    padding: 22px 50px;
    font-size: 1.15rem;
}

/* ==========================================================================
   Header / Navbar Premium
   ========================================================================== */
.header {
    background-color: rgba(10, 9, 8, 0.9); /* Escuro com opacidade */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0; /* Menos altura inicial */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled {
    padding: 8px 0; /* Efeito Shrink */
    background-color: rgba(10, 9, 8, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
    height: 110px; 
    max-width: 250px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled .logo-img {
    height: 80px; /* Logo reduz ao rolar */
}

/* ==========================================================================
   Navegação Desktop
   ========================================================================== */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.desktop-nav a:hover {
    color: var(--color-accent); /* Hover dourado */
}

/* ==========================================================================
   Mobile Menu (Off-Canvas)
   ========================================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
}

.menu-toggle:hover {
    color: var(--color-accent);
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -320px; /* Começa escondido à direita */
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 1002;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offcanvas-menu.active {
    right: 0; /* Desliza para dentro */
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    transition: color 0.3s;
}

.close-menu svg {
    width: 28px;
    height: 28px;
}

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

.offcanvas-logo {
    margin-bottom: 40px;
    text-align: center;
}

.offcanvas-logo img {
    height: 60px;
}

.offcanvas-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offcanvas-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.offcanvas-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.offcanvas-contact {
    margin-top: auto;
    text-align: center;
}

/* Responsividade Header */
@media (max-width: 992px) {
    .desktop-nav {
        display: none; /* Esconde os links no mobile */
    }
    
    .menu-toggle {
        display: block; /* Mostra hambúrguer no mobile */
    }
}

/* ==========================================================================
   Placeholders de Imagem (Para visualização) e Imagens Reais
   ========================================================================== */
.image-placeholder {
    background-color: #e5e0d5;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
    width: 100%;
    border-radius: var(--border-radius);
}

.placeholder-small { height: 250px; }

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-image {
    max-height: 700px;
    border-radius: 20px;
    padding: 10px;
    border: 2px solid var(--color-accent);
}

.solution-image-wrapper {
    position: relative;
    z-index: 1;
    transform: translate(-7.5px, -7.5px); /* Centraliza o grupo inteiro (imagem + moldura) */
}

.solution-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    z-index: -1;
}

.solution-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0; /* Formato retangular padrão, cantos retos */
    box-shadow: var(--shadow);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 220px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 500;
}

.highlight-gold {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #6b6459;
    max-width: 90%;
}

.hero-rating {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-rating .stars {
    color: var(--color-accent);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Problema Section
   ========================================================================== */
.problem {
    padding: 80px 0;
}

.problem-container {
    max-width: 800px;
    text-align: center;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ==========================================================================
   Seção Transformation (Nova)
   ========================================================================== */
.transformation {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 0;
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.transformation-image {
    padding: 32px;
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
    border-radius: var(--border-radius);
    filter: sepia(0.35) saturate(1.2) contrast(1.05) brightness(0.95);
}

.transformation-text {
    padding: 60px;
    text-align: center;
}

.transformation-text h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-accent-text);
}

@media (max-width: 992px) {
    .transformation-container {
        grid-template-columns: 1fr;
    }
    .transformation-text {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   Solução / Diferenciais
   ========================================================================== */
.solution {
    padding: 100px 0;
}

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

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.check-icon {
    color: var(--color-accent);
    margin-right: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Quem está por trás (Founder)
   ========================================================================== */
.founder {
    padding: 100px 0;
    background-color: var(--color-light);
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
    z-index: 1;
    transform: translate(-7.5px, -7.5px);
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    z-index: -1;
}

.founder-image img {
    width: 100%;
    display: block;
    border-radius: 0; /* Formato retangular padrão, cantos retos */
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 600px;
}

.founder-content .section-title {
    margin-bottom: 20px;
}

.founder-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.founder-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-list {
    margin: 30px 0;
}

.founder-quote {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--color-accent);
}

.founder-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.founder-quote .founder-author {
    font-style: normal;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.founder-quote .founder-author span {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.services {
    padding: 120px 0;
}

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

.service-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    padding: 2px; /* Espaço para a borda animada */
    cursor: pointer;
    background-color: var(--color-card-dark); /* Fundo base fallback */
}

/* Gradiente dourado rotativo para o hover */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #c9a15a, #f2d9a1);
    animation: rotate-border 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before, .service-card.open::before {
    opacity: 1;
}

.service-inner {
    position: relative;
    background-color: var(--color-card-dark);
    border-radius: calc(var(--border-radius) - 2px);
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-info {
    padding: 25px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-header h3 {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.service-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.chevron-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.service-card.open .chevron-icon {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.service-card.open .service-details {
    max-height: 600px;
    opacity: 1;
    margin-top: 15px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.service-details li {
    padding: 6px 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 18px;
}

.service-details li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Efeito Reveal (Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

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

.reveal-bullet {
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease-out;
}

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

/* ==========================================================================
   Prova Social
   ========================================================================== */
.testimonials {
    padding: 100px 0;
}

.subtitle-text {
    margin-bottom: 50px;
    color: #666;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-testimonials 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--color-accent);
    font-size: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-style: normal;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.google-badge-container {
    margin-bottom: 40px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--color-dark);
}

.google-icon-inline {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Oferta Final
   ========================================================================== */
.offer {
    padding: 100px 0;
    text-align: center;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-quote {
    margin: 30px auto 40px;
    max-width: 700px;
    color: var(--color-accent-text);
}

.cta-quote p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.cta-quote span {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: normal;
    font-family: var(--font-body);
    opacity: 0.8;
}

/* ==========================================================================
   Footer Compacto Premium (Estilo Luxo)
   ========================================================================== */
.footer {
    background-color: #111111;
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 0 20px; /* Reduzindo bastante o espaço vazio */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 160px; /* Aproximadamente 2,5x o tamanho original */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-cols {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    gap: 80px;
}

.footer-col {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.col-icon {
    color: var(--color-accent); /* Dourado */
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.col-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.col-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Off White */
    font-family: var(--font-body);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85); /* Off White */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent); /* Dourado */
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--color-accent); /* Links ficam dourados */
}

.footer-socials a:hover svg {
    transform: translateX(3px); /* Animação leve nos ícones */
}

.footer-divider-compact {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 20px 0 15px;
}

.footer-bottom-compact {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-cols {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-col {
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 250px;
    }
}

/* ==========================================================================
   Botão WhatsApp Flutuante
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 50%;
    filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.3));
    transition: all 0.3s ease;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-halo 2.5s ease-out infinite;
}

.floating-whatsapp:hover {
    filter: drop-shadow(0 6px 15px rgba(37, 211, 102, 0.6)) brightness(1.1);
    transform: scale(1.05);
}

.floating-whatsapp .whatsapp-logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

@keyframes pulse-halo {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-container, 
    .solution-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-top: 180px;
    }

    .hero-image-wrapper {
        order: -1; /* Imagem acima do texto no mobile */
    }

    .check-list li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 150px; 
        margin: -30px 0;
    }
    
    .header.scrolled .logo-img {
        height: 110px;
        margin: -20px 0;
    }

    .btn {
        width: 100%;
        display: block;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   UI/UX e Responsividade (Adaptações Finais)
   ========================================================================== */

/* 1. Foco visível para navegação por teclado (Acessibilidade) */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* 2. Feedback de Active em botões (Interação) */
.btn:active, button:active, .floating-whatsapp:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

/* 3. Evitar hover "preso" em telas Touch (Mobile) */
@media (hover: none) {
    /* Desativa o crescimento do pseudo-elemento ::before no hover */
    .service-card:hover::before {
        opacity: 0;
    }
    
    /* Mantém apenas para o estado .open manipulado via JavaScript no touch */
    .service-card.open::before {
        opacity: 1;
    }
    
    /* Remove o translateY do hover no card */
    .service-card:hover {
        transform: none;
    }
    
    .service-card.open {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Ajustes de Media Queries (Consolidação Responsiva)
   ========================================================================== */

/* Tablets / Laptops pequenos */
@media (max-width: 1024px) {
    /* Diminui margens e paddings excessivos */
    .founder, .services, .testimonials, .offer {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 150px;
    }
}

/* Mobile: Smartphones e Tablets em pé */
@media (max-width: 768px) {
    /* Centralizar textos globalmente no mobile */
    p, h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }

    /* Exceção: Conteúdos dos cards de serviço devem ficar à esquerda */
    .service-header h3,
    .service-info p,
    .service-details li {
        text-align: left !important;
    }

    .service-header h3 {
        margin: 0;
        display: flex;
        align-items: center;
    }

    /* Garantir que listas e flex-containers acompanhem a esquerda */
    .check-list li {
        justify-content: flex-start;
        text-align: left;
    }

    /* Redesenho da lista na seção Solução (Por que escolher o Studio K?) */
    .solution {
        background-color: #F2EEE6 !important;
    }

    .solution .check-list li {
        background-color: #FFFFFF;
        border-radius: 12px;
        margin-bottom: 10px;
        padding: 12px 16px;
        color: #1A1815;
        font-size: 14px;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .solution .check-icon {
        width: 32px;
        height: 32px;
        background-color: #EFDDB8;
        color: #8C6A2E;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .solution .check-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Garantir que colunas virem blocos */
    .founder-container, .footer-cols {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Redução de fonte para legibilidade em telas pequenas */
    .section-title {
        font-size: 1.8rem;
    }
    .hero-title {
        font-size: 2rem;
    }

    .founder-content, .offer-content {
        max-width: 100%;
        padding: 0 10px;
        align-items: center;
    }

    /* Reduzir o deslocamento da moldura dourada no mobile para não ocupar espaço excessivo */
    .founder-image::before,
    .solution-image-wrapper::before {
        top: 6px;
        left: 6px;
    }
    .founder-image,
    .solution-image-wrapper {
        transform: translate(-3px, -3px);
    }
}

/* Mobile Pequeno (iPhones antigos, etc) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    /* O card de depoimentos tinha largura fixa de 380px, que quebra a tela horizontalmente */
    .testimonial-card {
        width: 85vw; 
        padding: 20px;
        margin: 0 auto;
    }

    /* Ajuste nos botões para ocuparem largura inteira (melhor touch target) */
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}
