:root {
    --navy: #0E2233;
    --navy-2: #14293A;
    --yellow: #FCCD4D;
    --surface: #FFFFFF;
    --bg: #F5F6F8;
    --muted: #5A6876;
    --muted-2: #7C8794;
    --border: #E3E7EC;
    --shadow: 0 16px 40px rgba(14, 34, 51, 0.08);
    --radius: 20px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--navy);
}

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

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
}

.container {
    width: min(var(--max-width), 92%);
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-muted {
    background: var(--surface);
}

.section-tight {
    padding: 64px 0;
}

.legal-hero {
    padding-top: 104px;
    padding-bottom: 48px;
}

.legal-wrap {
    max-width: 900px;
}

.legal-meta {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 12px;
}

.legal-title {
    font-size: clamp(2.2rem, 3.2vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.legal-lead {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.legal-update {
    font-size: 0.9rem;
    color: var(--muted-2);
}

.legal-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    background: var(--surface);
    display: grid;
    gap: 8px;
}

.legal-card + .legal-card {
    margin-top: 16px;
}

.legal-card h2 {
    font-size: 1.2rem;
}

.legal-card h3 {
    font-size: 1rem;
    color: var(--navy);
}

.error-hero {
    padding-top: 120px;
    padding-bottom: 56px;
}

.error-wrap {
    max-width: 720px;
}

.error-code {
    font-size: clamp(3.8rem, 6vw, 5.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.error-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.error-text {
    color: var(--muted);
    margin-bottom: 20px;
}

.error-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    background: var(--surface);
    display: grid;
    gap: 10px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.error-links {
    margin-top: 10px;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.error-links a {
    color: var(--muted-2);
}

.error-links a:hover,
.error-links a:focus-visible {
    color: var(--navy);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 999px;
    z-index: 2000;
}

.triangle {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: inline-block;
}

.js-reveal .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: var(--delay, 0ms);
}

.js-reveal .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    --delay: 90ms;
}

.reveal.delay-2 {
    --delay: 180ms;
}

.reveal.delay-3 {
    --delay: 270ms;
}

.js-reveal .list-reveal .triangle {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.js-reveal .list-reveal.is-visible .triangle {
    opacity: 1;
    transform: translateX(0);
}

.list-reveal li:nth-child(1) .triangle { transition-delay: 0.05s; }
.list-reveal li:nth-child(2) .triangle { transition-delay: 0.1s; }
.list-reveal li:nth-child(3) .triangle { transition-delay: 0.15s; }
.list-reveal li:nth-child(4) .triangle { transition-delay: 0.2s; }
.list-reveal li:nth-child(5) .triangle { transition-delay: 0.25s; }
.list-reveal li:nth-child(6) .triangle { transition-delay: 0.3s; }

.js-reveal .reveal-stagger .step {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-reveal .reveal-stagger.is-visible .step {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible .step:nth-child(1) { transition-delay: 0.06s; }
.reveal-stagger.is-visible .step:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible .step:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible .step:nth-child(4) { transition-delay: 0.24s; }

.parallax {
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
}

.cta-pulse {
    animation: ctaPulse 13s ease-in-out infinite;
}

.cta-pulse:hover,
.cta-pulse:focus-visible {
    animation-play-state: paused;
}

@keyframes ctaPulse {
    0%,
    78% {
        box-shadow: 0 10px 22px rgba(252, 205, 77, 0.35);
    }
    82% {
        box-shadow: 0 16px 30px rgba(252, 205, 77, 0.5);
    }
    86% {
        box-shadow: 0 10px 22px rgba(252, 205, 77, 0.35);
    }
    100% {
        box-shadow: 0 10px 22px rgba(252, 205, 77, 0.35);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
}

.logo img {
    width: 36px;
    height: 36px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--muted);
}

.nav a {
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--navy);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    min-height: 44px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out, border-color 0.18s ease-in-out;
    cursor: pointer;
    background: transparent;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 10px 22px rgba(252, 205, 77, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 12px 26px rgba(252, 205, 77, 0.45);
}

.btn-secondary {
    border-color: var(--border);
    color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--navy-2);
    box-shadow: 0 12px 20px rgba(14, 34, 51, 0.08);
}

.btn-ghost {
    color: var(--muted);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    color: var(--navy);
}

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

.btn:hover {
    transform: translateY(-1px) scale(1.03);
}

.btn:active {
    transform: scale(0.97);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
}

.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }

.hero {
    padding-top: 80px;
}

.hero-copy {
    display: grid;
    gap: 12px;
}

.hero-media {
    display: grid;
    gap: 16px;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.4vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-sub {
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--muted-2);
    margin-top: 8px;
}

.list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 20px 0;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
}

.list li .triangle {
    margin-top: 8px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.9rem;
    color: var(--navy);
}

.gallery-block {
    display: grid;
    gap: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    display: grid;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(14, 34, 51, 0.12);
    border-color: rgba(252, 205, 77, 0.45);
}

.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #F1F4F7;
}

.gallery-caption {
    padding: 12px 14px 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.profile-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.profile-mock img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-cover {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
    padding: 12px;
    background: #101E2B;
}

.cover-photo,
.cover-map {
    position: relative;
    border-radius: 16px;
    height: 140px;
    overflow: hidden;
}

.cover-photo {
    background: linear-gradient(135deg, rgba(43, 60, 76, 0.65) 0%, rgba(23, 36, 50, 0.85) 100%),
        url("../images/veterinaria-branco.png");
    background-size: cover;
    background-position: center;
}

.cover-map {
    background: #1A2B3B;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

.cover-chip {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(14, 34, 51, 0.9);
    color: white;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cover-chip-right {
    left: auto;
    right: 10px;
}

.profile-avatar {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid white;
    background: url("../images/veterinaria-branco.png") center/cover no-repeat;
}

.map-label {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(14, 34, 51, 0.9);
    color: white;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    top: 48px;
    left: 58%;
    box-shadow: 0 0 0 6px rgba(252, 205, 77, 0.25);
    animation: pinPulse 1.8s ease-in-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(252, 205, 77, 0.25);
        opacity: 1;
    }
    60% {
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(252, 205, 77, 0.08);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(252, 205, 77, 0.25);
        opacity: 1;
    }
}

.profile-body {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.profile-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.profile-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--navy);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
}

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

.profile-owner {
    color: var(--muted-2);
    font-size: 0.85rem;
    margin-top: 4px;
}

.status-open {
    color: #1F8A4C;
    font-weight: 600;
}

.pill {
    background: #F2F4F7;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--navy);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-chip {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--navy);
    background: #FFFFFF;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.profile-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: #FBFCFD;
    display: grid;
    gap: 8px;
    font-size: 0.92rem;
}

.profile-card.highlight {
    border-color: rgba(252, 205, 77, 0.8);
    background: rgba(252, 205, 77, 0.12);
}

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

.photo {
    background: #E6EBF1;
    height: 36px;
    border-radius: 8px;
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 620px;
    margin-bottom: 28px;
    color: var(--muted);
}

.deliverable {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    background: var(--surface);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.deliverable + .deliverable {
    margin-top: 20px;
}

.preview {
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 18px;
    background: #F7F9FB;
    display: grid;
    gap: 10px;
}

.preview-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--navy);
}

.preview-tag span {
    color: var(--muted-2);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.step {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    background: var(--surface);
    display: grid;
    gap: 10px;
}

.step small {
    color: var(--muted-2);
    font-weight: 600;
}

.requirements {
    margin-top: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    background: #F8FAFC;
}

.pricing {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    background: var(--surface);
    display: grid;
    gap: 20px;
}

.pricing-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pricing .price-title {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.pricing .price-value {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: right;
    min-width: 140px;
}

.pricing-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}


.pricing-notes {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.95rem;
}

.faq {
    display: grid;
    gap: 14px;
}

details {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    background: var(--surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

details[open] {
    border-color: rgba(252, 205, 77, 0.45);
    box-shadow: 0 12px 20px rgba(14, 34, 51, 0.08);
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

details[open] summary::after {
    transform: rotate(135deg);
    opacity: 1;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

details[open] .faq-content {
    max-height: 260px;
    opacity: 1;
}

.faq-content p {
    margin-top: 10px;
}

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

.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    background: var(--surface);
    display: grid;
    gap: 10px;
}

.cta-final {
    border-radius: 28px;
    padding: 48px;
    background: var(--navy);
    color: white;
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.cta-final.cta-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(252, 205, 77, 0.45);
    opacity: 0.35;
    box-shadow: 0 0 0 0 rgba(252, 205, 77, 0.25);
    animation: ctaGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.cta-final.cta-glow > * {
    position: relative;
    z-index: 1;
}

@keyframes ctaGlow {
    0%,
    72% {
        opacity: 0.25;
        box-shadow: 0 0 0 0 rgba(252, 205, 77, 0.25);
    }
    86% {
        opacity: 0.55;
        box-shadow: 0 0 0 12px rgba(252, 205, 77, 0.18);
    }
    100% {
        opacity: 0.25;
        box-shadow: 0 0 0 0 rgba(252, 205, 77, 0.25);
    }
}

.cta-final p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.cta-links a {
    color: rgba(255, 255, 255, 0.7);
}

.cta-links a:hover,
.cta-links a:focus-visible {
    color: white;
}

.cta-links button {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.cta-links button:hover,
.cta-links button:focus-visible {
    color: white;
}

.site-footer {
    padding: 48px 0 72px;
    background: #0A1A28;
    color: white;
}

.site-footer .logo {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.footer-grid h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 32px;
    padding-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    transition: opacity 0.2s ease;
}

.whatsapp-float:hover svg,
.whatsapp-float:focus-visible svg {
    opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cta-pulse,
    .cta-final.cta-glow::after,
    .profile-pin {
        animation: none;
    }

    .parallax {
        transform: none;
    }

    .js-reveal .reveal,
    .js-reveal .list-reveal .triangle,
    .js-reveal .reveal-stagger .step {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .grid-12 {
        grid-template-columns: 1fr;
    }

    .col-5,
    .col-6,
    .col-7,
    .col-8 {
        grid-column: 1 / -1;
    }

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

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

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-menu.is-open {
        display: flex;
    }

    .grid-12 {
        gap: 20px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-media {
        order: 2;
        margin-top: 8px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-sub {
        order: 1;
    }

    .hero-actions {
        order: 2;
    }

    .hero-note {
        order: 3;
    }

    .hero-copy .list {
        order: 4;
        margin-top: 6px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding-top: 48px;
    }

    .legal-hero {
        padding-top: 72px;
        padding-bottom: 32px;
    }

    .error-hero {
        padding-top: 84px;
        padding-bottom: 40px;
    }

    .header-actions .btn-primary {
        display: none;
    }

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

    .gallery-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 68px;
    }

    .btn {
        width: auto;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-actions .btn {
        width: auto;
        max-width: none;
    }

    .cta-final {
        padding: 36px 24px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}
    
