/* Mosaic Trust Editorial - Identity Visual Base */
:root {
    --grafite-primario: #1F1F1F;
    --ambar-dourado: #C8861A;
    --creme-quente: #F4EFE6;
    --off-white: #FAFAF7;
    --grafite-texto: #1A1A1A;
    --grafite-secundario: #3D3D3D;
    --texto: #1A1A1A;
    --branco: #FFFFFF;

    --f-display: 'Playfair Display', serif;
    --f-body: 'DM Sans', sans-serif;

    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    background-color: var(--off-white);
    color: var(--grafite-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--grafite-primario);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--ambar-dourado);
    color: white;
}

.btn-primary:hover {
    background-color: #b07516;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 134, 26, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    border: 1px solid var(--ambar-dourado);
    color: var(--ambar-dourado);
}

.btn-outline:hover {
    background-color: var(--ambar-dourado);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
    color: white;
}

.logo-text {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--ambar-dourado);
}

.btn-nav {
    background-color: var(--ambar-dourado);
    padding: 10px 20px !important;
    border-radius: 4px;
    opacity: 1 !important;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-color: var(--grafite-primario);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.72);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-headline-wrapper {
    position: relative;
    padding-left: 30px;
}

.accent-line {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: var(--ambar-dourado);
}

.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 8px;
    height: 100%;
}

.mosaic-item {
    overflow: hidden;
    border-radius: 4px;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.img-1 {
    grid-column: 1 / 3;
}

.hero-foto-fabio {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ambar-dourado);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero-foto-fabio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pain/Solution Section */
.pain-solution {
    padding: 120px 0;
    background-color: var(--creme-quente);
    text-align: center;
}

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

.pain-content p {
    font-size: 1.25rem;
    color: var(--grafite-texto);
    opacity: 0.8;
}

/* Services Bento Grid */
.services {
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.bento-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 31, 31, 0.1);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--grafite-primario);
}

.bento-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.bento-card .arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--ambar-dourado);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.bento-card:hover .arrow {
    transform: translateX(5px);
}

.main-card {
    grid-column: span 6;
    grid-row: span 2;
    color: white;
    background-color: var(--grafite-primario);
}

.main-card h3 {
    color: white;
    font-size: 2.5rem;
}

.main-card p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.main-card .card-content {
    position: relative;
    z-index: 1;
}

.medium-card {
    grid-column: span 3;
    grid-row: span 1;
}

.small-card {
    grid-column: span 3;
    grid-row: span 1;
    justify-content: center;
    padding: 20px;
}

.small-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Enchantment Section */
.enchantment {
    padding: 100px 0;
    background-color: var(--grafite-primario);
    color: white;
}

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

.enchantment-text .section-title {
    color: white;
}

.locations-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-item strong {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--ambar-dourado);
    min-width: 60px;
}

.enchantment-visual img {
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--creme-quente);
}

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

.diferenciais-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--texto);
    line-height: 1.5;
}

.diferencial-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--ambar-dourado);
    color: var(--branco);
}

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

.foto-fabio-large {
    position: relative;
}

.foto-fabio-large img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--ambar-dourado);
    padding: 10px;
}

/* Testimonials Stack */
.testimonials {
    padding: 120px 0;
    background-color: var(--off-white);
}

.testimonials-stack {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    height: 450px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    transform-origin: bottom center;
}

.quote-icon {
    font-family: var(--f-display);
    font-size: 8rem;
    color: var(--ambar-dourado);
    line-height: 0;
    position: absolute;
    top: 40px;
    left: 40px;
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--ambar-dourado);
    font-size: 0.8rem;
}

/* Ticker Bar */
.ticker-bar {
    background-color: var(--ambar-dourado);
    color: white;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: ticker 35s linear infinite;
}

.ticker-track span {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 50px;
}

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

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

/* FAQ Section */
.faq {
    padding: 120px 0;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-family: var(--f-body);
    font-weight: 600;
    color: var(--grafite-primario);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--ambar-dourado);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Location Section */
.location {
    padding: 120px 0;
    background-color: var(--creme-quente);
}

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

.address-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.address-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--grafite-primario);
}

.address-card p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* CTA Form Section */
.cta-form {
    padding: 120px 0;
    background-color: var(--grafite-primario);
    color: white;
}

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

.cta-text .section-title {
    color: white;
}

.cta-contact-info {
    margin-top: 40px;
}

.cta-contact-info p {
    margin-bottom: 10px;
}

.cta-form-wrapper {
    background-color: var(--creme-quente);
    padding: 50px;
    border-radius: 8px;
    color: var(--grafite-texto);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--f-body);
    font-size: 1rem;
    background-color: white;
}

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

.full-width {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #121212;
    color: white;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--ambar-dourado);
}

.footer-col p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--ambar-dourado);
}

.contact-list li a {
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.ag5-link {
    color: var(--ambar-dourado);
    font-weight: 600;
}

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--ambar-dourado);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ========================================
   RESPONSIVO — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {

    .hero-container,
    .enchantment-container,
    .about-container,
    .location-container,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-visual {
        height: 350px;
        order: -1;
    }

    .hero-foto-fabio {
        left: 20px;
        top: auto;
        bottom: -40px;
        transform: none;
        width: 140px;
        height: 140px;
    }

    .bento-grid {
        grid-auto-rows: 180px;
    }

    .main-card {
        grid-column: span 12;
    }

    .medium-card {
        grid-column: span 6;
    }

    .small-card {
        grid-column: span 6;
    }

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

/* ========================================
   RESPONSIVO — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

    /* --- Navbar Mobile --- */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(31, 31, 31, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
        opacity: 1;
    }

    .btn-nav {
        margin-top: 10px;
        padding: 14px 28px !important;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* --- Hero Mobile --- */
    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
        display: flex;
        align-items: center;
        background-color: #000;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 70%, #000 100%), 
                          url('/assets/advogadofabiooliveira_1757348439_3717230589998159907_45812508438.jpg');
        background-size: cover;
        background-position: center top;
        position: relative;
    }

    .hero-overlay {
        display: none; /* Degradê já incorporado no background-image para melhor controle */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        width: 100%;
        position: relative;
        z-index: 5;
    }

    /* Esconde os elementos visuais antigos no mobile */
    .hero-visual {
        display: none;
    }

    .hero-foto-fabio {
        display: none;
    }

    .hero-headline-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .accent-line {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        line-height: 1;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* --- Seções — espaçamento mobile --- */
    .pain-solution,
    .services,
    .about,
    .testimonials,
    .faq,
    .location,
    .cta-form {
        padding: 70px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    /* --- Pain/Solution Mobile --- */
    .pain-solution {
        padding: 70px 0;
    }

    .pain-content p {
        font-size: 1.05rem;
    }

    /* --- Bento Grid Mobile --- */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .main-card {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }

    .main-card h3 {
        font-size: 1.6rem;
    }

    .main-card .card-bg img {
        object-position: center top;
    }

    .medium-card {
        grid-column: 1;
        min-height: 160px;
    }

    .small-card {
        grid-column: 1;
        min-height: 100px;
        justify-content: center;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-card .arrow {
        bottom: 20px;
        right: 20px;
    }

    /* --- Enchantment Mobile --- */
    .enchantment-container {
        gap: 30px;
    }

    .enchantment-text p {
        font-size: 1rem;
    }

    .location-item strong {
        font-size: 1.2rem;
        min-width: 45px;
    }

    .enchantment-visual img {
        border-radius: 6px;
    }

    /* --- About Mobile --- */
    .about-container {
        gap: 30px;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .diferenciais-list {
        margin-top: 24px;
        gap: 12px;
    }

    .diferencial-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .diferencial-icon {
        width: 24px;
        height: 24px;
    }

    .diferencial-icon svg {
        width: 14px;
        height: 14px;
    }

    .foto-fabio-large {
        max-width: 280px;
        margin: 0 auto;
    }

    .foto-fabio-large img {
        padding: 8px;
        border-width: 2px;
    }

    /* --- Testimonials Mobile --- */
    .testimonials {
        padding: 70px 0;
    }

    .testimonials-stack {
        height: auto;
        margin-top: 30px;
    }

    .testimonial-card {
        position: relative;
        padding: 30px 24px;
        margin-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .quote-icon {
        font-size: 4rem;
        top: 20px;
        left: 16px;
    }

    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .testimonial-author img {
        width: 44px;
        height: 44px;
    }

    .testimonial-author h4 {
        font-size: 0.95rem;
    }

    /* --- Ticker Mobile --- */
    @media (prefers-reduced-motion: reduce) {
        .ticker-track {
            animation: none;
        }
    }

    .ticker-bar {
        padding: 14px 0;
    }

    .ticker-track span {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* --- FAQ Mobile --- */
    .faq {
        padding: 70px 0;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    /* --- Location Mobile --- */
    .location {
        padding: 70px 0;
    }

    .address-card {
        padding: 24px;
        margin-bottom: 16px;
    }

    .address-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .address-card p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .address-card .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .location-map {
        border-radius: 6px;
    }

    .location-map iframe {
        height: 280px !important;
    }

    /* --- CTA Form Mobile --- */
    .cta-form {
        padding: 70px 0;
    }

    .cta-container {
        gap: 30px;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-contact-info {
        margin-top: 20px;
    }

    .cta-contact-info p {
        font-size: 0.9rem;
    }

    .cta-form-wrapper {
        padding: 24px;
        border-radius: 6px;
    }

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

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* --- Footer Mobile --- */
    .footer {
        padding: 60px 0 30px;
    }

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

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-col p {
        font-size: 0.9rem;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 0.8rem;
    }

    /* --- Floating WhatsApp Mobile --- */
    .fab-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .fab-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   RESPONSIVO — MOBILE PEQUENO (max-width: 374px)
   ======================================== */
@media (max-width: 374px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

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

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

    .cta-form-wrapper {
        padding: 18px;
    }
}