/* Vic Nails Estética — Landing Page */

:root {
    --bg-main: #F5F3F1;
    --bg-secondary: #EDDAC8;
    --bg-peach: #F9D0B8;
    --brown-deep: #502108;
    --brown: #976C4D;
    --brown-light: #B08A69;
    --text: #242424;
    --text-secondary: #473832;
    --grey: #6b5f58;
    --grey-light: #9a8f88;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(80, 33, 8, 0.08);
    --shadow-lg: 0 12px 48px rgba(80, 33, 8, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    --header-h: 80px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--brown-deep);
}

ul, ol {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--brown-deep);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.narrow {
    width: min(760px, 92vw);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brown-deep);
}

h1 {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(80, 33, 8, 0.25);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(80, 33, 8, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--brown-deep);
    border-color: var(--brown-light);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    color: var(--brown-deep);
}

.btn-light {
    background: var(--white);
    color: var(--brown-deep);
}

.btn-light:hover {
    background: var(--bg-secondary);
    color: var(--brown-deep);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 243, 241, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(151, 108, 77, 0.12);
    height: var(--header-h);
}

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

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 0;
}

.logo-link img {
    width: auto;
    height: calc(var(--header-h) - 18px);
    max-width: clamp(120px, 18vw, 200px);
    object-fit: contain;
    object-position: left center;
}

.logo-link .logo-mobile {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.main-nav a:hover {
    color: var(--brown);
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-deep);
    transition: var(--transition);
}

.hero {
    position: relative;
    padding: calc(var(--header-h) + 3rem) 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
}

.hero-bg::before {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -100px;
    background: radial-gradient(circle, var(--bg-peach) 0%, transparent 70%);
}

.hero-bg::after {
    width: 360px;
    height: 360px;
    bottom: -60px;
    left: -80px;
    background: radial-gradient(circle, var(--bg-secondary) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.75rem 0 1.25rem;
}

.hero-meta {
    font-size: 0.875rem;
    color: var(--grey-light);
}

.hero-meta .dot {
    margin: 0 0.5rem;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(151, 108, 77, 0.1);
}

.hero-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-quote {
    padding: 1.5rem 2rem;
    border-top: 3px solid var(--brown);
    background: var(--white);
}

.hero-quote p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brown-deep);
    margin: 0;
}

.section {
    padding: 5rem 0;
}

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

.section-dark {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, 0.9);
}

.section-dark h2,
.section-dark h3 {
    color: var(--bg-main);
}

.section-header {
    margin-bottom: 2.5rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
}

.section-header.center .section-sub {
    margin-inline: auto;
}

.prose p:last-child {
    margin-bottom: 0;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.two-col.align-center {
    align-items: center;
}

.pillar-list li,
.check-list li,
.benefit-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
}

.pillar-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--brown-light);
    font-size: 0.75rem;
    top: 0.35rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 600;
}

.benefit-list li::before {
    content: '·';
    position: absolute;
    left: 0.25rem;
    color: var(--brown-light);
    font-size: 1.5rem;
    line-height: 1;
    top: -0.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(151, 108, 77, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 0.5rem;
}

.card-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(151, 108, 77, 0.15);
}

.price-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-deep);
    background: var(--bg-main);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.card-note {
    font-size: 0.82rem;
    color: var(--grey-light);
    font-style: italic;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(145deg, var(--brown-deep) 0%, var(--brown) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.highlight-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.highlight-box .btn-primary {
    background: var(--white);
    color: var(--brown-deep);
    box-shadow: none;
}

.highlight-box .btn-primary:hover {
    background: var(--bg-secondary);
}

.highlight-inline {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--brown);
    margin-top: 2rem;
}

.steps {
    max-width: 720px;
    margin-inline: auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(151, 108, 77, 0.15);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown-light);
    line-height: 1;
    flex-shrink: 0;
}

.step p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.note {
    font-size: 0.9rem;
    color: var(--grey-light);
    font-style: italic;
    margin-top: 2rem;
}

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

.modality-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modality {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--brown-light);
}

.modality h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.modality p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.modality.unavailable {
    opacity: 0.7;
    border-left-color: var(--grey-light);
}

.quote-inline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brown);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 60%, #7a5538 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-band p {
    opacity: 0.92;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 1.75rem;
}

.center {
    text-align: center;
}

.price-table-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 480px;
}

.price-table th,
.price-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(151, 108, 77, 0.1);
}

.price-table th {
    background: var(--brown-deep);
    color: var(--bg-main);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:last-child {
    font-weight: 600;
    color: var(--brown-deep);
    white-space: nowrap;
}

.price-notes {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--grey);
}

.price-notes li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
}

.price-notes li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--brown);
}

.testimonials-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px dashed rgba(151, 108, 77, 0.3);
    max-width: 560px;
    margin-inline: auto;
}

.testimonials-placeholder p {
    color: var(--text-secondary);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(151, 108, 77, 0.12);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.1rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--brown-deep);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--brown-light);
    transition: transform var(--transition);
}

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

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.section-contact {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
}

.section-review {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-links {
    margin: 1.5rem 0 2rem;
}

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

.contact-links a {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.contact-links a:hover strong {
    color: var(--brown);
}

.contact-links strong {
    color: var(--brown-deep);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-links span {
    color: var(--text-secondary);
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lead-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(151, 108, 77, 0.08);
}

.lead-form h3 {
    margin-bottom: 0.35rem;
}

.form-intro {
    font-size: 0.9rem;
    color: var(--grey-light);
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--brown-deep);
}

.optional {
    font-weight: 400;
    color: var(--grey-light);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1.5px solid rgba(151, 108, 77, 0.25);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brown-light);
    box-shadow: 0 0 0 3px rgba(151, 108, 77, 0.12);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-feedback {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    min-height: 1.25rem;
}

.form-feedback.success {
    color: #2d7a4f;
}

.form-feedback.error {
    color: #b33a3a;
}

.form-consent {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--brown);
}

.checkbox-label a {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page {
    background: var(--bg-main);
}

.legal-header {
    background: var(--white);
    border-bottom: 1px solid rgba(151, 108, 77, 0.12);
    padding: 1rem 0;
}

.legal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.legal-logo img {
    height: 52px;
    width: auto;
}

.legal-back {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
}

.legal-main {
    padding: 2.5rem 0 4rem;
}

.legal-content {
    max-width: 720px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.legal-meta {
    font-size: 0.875rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(151, 108, 77, 0.12);
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin: 0.75rem 0 1rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-footer {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.75rem 0;
    text-align: center;
}

.legal-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin-bottom: 1rem;
}

.legal-footer-nav a {
    color: var(--bg-peach);
    font-size: 0.875rem;
    font-weight: 500;
}

.legal-footer-nav a:hover {
    color: var(--white);
}

.legal-footer-copy {
    font-size: 0.78rem;
    opacity: 0.65;
    margin: 0;
}

.site-footer {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, 0.88);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-logo {
    margin-inline: auto;
    margin-bottom: 1rem;
    max-width: 200px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--bg-peach);
    font-weight: 500;
}

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

.footer-prices {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-prices table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
}

.footer-prices th,
.footer-prices td {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.footer-prices th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

.footer-legal {
    font-size: 0.78rem;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white);
    padding: 0.75rem 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .cards-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-photo {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    .logo-link .logo-desktop {
        display: none;
    }

    .logo-link .logo-mobile {
        display: block;
        max-width: 56px;
        height: calc(var(--header-h) - 20px);
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg-main);
        border-bottom: 1px solid rgba(151, 108, 77, 0.12);
        padding: 1rem 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1.5rem;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(151, 108, 77, 0.1);
    }

    .main-nav a {
        display: block;
        padding: 0.85rem 0;
    }

    .nav-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 0.85rem;
        border-radius: 50%;
    }

    .legal-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}
