:root {
    --rose-deep:   #0a1e10;
    --rose-mid:    #2d7a4f;
    --rose-soft:   #52a872;
    --rose-pale:   #dff0e6;
    --rose-mist:   #f2faf5;
    --cream:       #f7fdf9;
    --text-dark:   #081a0e;
    --text-body:   #2a5238;
    --text-light:  #618c72;
    --white:       #ffffff;

    --shadow-sm:  0 2px 16px rgba(20,80,40,0.07);
    --shadow-md:  0 8px 36px rgba(20,80,40,0.13);
    --shadow-lg:  0 24px 64px rgba(20,80,40,0.16);
    --shadow-xl:  0 40px 100px rgba(20,80,40,0.20);

    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  32px;
    --radius-xl:  48px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.38s var(--ease);
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html { scroll-padding-top: 72px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
    animation: waPulse 2.8s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 30px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.55);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── HEADER ─── */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(254,252,253,0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 0 6%;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(82,168,114,0.12);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

header.scrolled { box-shadow: var(--shadow-md); }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(45,122,79,0.3);
}

.logo-mark i { font-size: 16px; color: #fff; }

.logo-text {
    font-family: 'DM Serif Display', serif;
    color: var(--rose-deep);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

nav { display: flex; gap: 4px; }

nav a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--rose-mid);
    background: var(--rose-pale);
}

/* ─── HERO ─── */
.home {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 70% 70% at 5% 95%, rgba(82,168,114,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 95% 5%, rgba(45,122,79,0.12) 0%, transparent 55%),
        var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 6%;
    padding-top: 72px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.home::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('clinica.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.40;
    z-index: 0;
    pointer-events: none;
}

.home-content,
.home-visual {
    position: relative;
    z-index: 1;
}

/* Floating orbs */
.home::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,168,114,0.07) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
    z-index: 1;
}

.home-content {
    animation: fadeUp 1s var(--ease) both;
    max-width: 580px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-pale);
    color: var(--rose-mid);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid rgba(82,168,114,0.2);
}

.home-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rose-soft);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.home h2 {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--rose-deep);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.home h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-body);
    font-weight: 300;
    max-width: 500px;
}

.home-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.1px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(45,122,79,0.30);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(45,122,79,0.38); }
.cta-primary:hover::before { opacity: 1; }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--rose-mid);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(45,122,79,0.3);
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--rose-pale);
    border-color: var(--rose-soft);
    transform: translateY(-3px);
}

/* ─── HERO IMAGE (3D) ─── */
.home-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 1.2s var(--ease) 0.3s both;
    perspective: 1200px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.photo-3d-wrap {
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
    cursor: pointer;
}

@keyframes float3d {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg) translateY(0px); }
    25%       { transform: rotateY(4deg) rotateX(2deg) translateY(-10px); }
    50%       { transform: rotateY(0deg) rotateX(-2deg) translateY(-18px); }
    75%       { transform: rotateY(-4deg) rotateX(1deg) translateY(-8px); }
}

.photo-3d-wrap:hover {
    animation: none;
    transform: rotateY(8deg) rotateX(4deg) translateY(-12px);
    transition: transform 0.6s var(--spring);
}

.photo-card {
    width: 320px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(82,168,114,0.15),
        20px 20px 60px rgba(45,122,79,0.2);
    position: relative;
    background: linear-gradient(135deg, var(--rose-pale), #fff);
    transform-style: preserve-3d;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s var(--ease);
}

.photo-card:hover img { transform: scale(1.04); }

/* Sheen effect */
.photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25) 0%,
        transparent 40%,
        rgba(255,255,255,0.05) 100%
    );
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s;
}

/* Badge floating */
.photo-badge {
    position: absolute;
    bottom: -20px;
    left: -28px;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(82,168,114,0.15);
    transform: translateZ(30px);
    min-width: 180px;
    animation: badgeFloat 5s ease-in-out 1s infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateZ(30px) translateY(0); }
    50%       { transform: translateZ(30px) translateY(-8px); }
}

.photo-badge-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.photo-badge-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--rose-mid);
}

.photo-badge-icon {
    position: absolute;
    top: -14px;
    right: 16px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45,122,79,0.35);
}

.photo-badge-icon i { font-size: 13px; color: #fff; }

/* Second badge */
.photo-badge-2 {
    position: absolute;
    top: 30px;
    right: -32px;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(45,122,79,0.35);
    transform: translateZ(20px);
    color: white;
    animation: badgeFloat2 5.5s ease-in-out 0.5s infinite;
}

@keyframes badgeFloat2 {
    0%, 100% { transform: translateZ(20px) translateY(0) rotate(2deg); }
    50%       { transform: translateZ(20px) translateY(-10px) rotate(0deg); }
}

.photo-badge-2-label { font-size: 11px; font-weight: 700; opacity: 0.8; letter-spacing: 0.8px; }
.photo-badge-2-val   { font-size: 20px; font-weight: 700; margin-top: 2px; }

/* Decorative circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(82,168,114,0.18);
    pointer-events: none;
}
.deco-c1 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin 20s linear infinite; }
.deco-c2 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin 14s linear infinite reverse; }

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ─── STATS BAR ─── */
.stats-bar {
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
    padding: 40px 6%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
}

.stat-num {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.75;
}

/* ─── ABOUT ─── */
.about {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 80px;
    padding: 110px 6%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,240,230,0.5), transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
}

.about-img-wrap {
    position: relative;
    perspective: 900px;
}

.about-img-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: aboutFloat 7s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%, 100% { transform: rotateY(-3deg) rotateX(2deg); }
    50%       { transform: rotateY(3deg) rotateX(-1deg); }
}

.about-img-3d img {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-xl), 16px 16px 50px rgba(45,122,79,0.18);
    display: block;
    filter: contrast(1.04) brightness(1.01);
    transition: transform 0.5s var(--ease);
}

.about-img-3d:hover {
    animation: none;
    transform: rotateY(5deg) rotateX(-3deg) translateY(-6px);
    transition: transform 0.5s var(--spring);
}

/* License badge on image */
.about-license-chip {
    position: absolute;
    bottom: -18px;
    right: -24px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(82,168,114,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-license-chip i { font-size: 22px; color: var(--rose-soft); }
.about-license-chip .chip-lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); }
.about-license-chip .chip-val { font-size: 15px; font-weight: 700; color: var(--rose-mid); margin-top: 2px; }


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-pale);
    color: var(--rose-mid);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(82,168,114,0.2);
}

.about-text h2 {
    font-family: 'Inter', sans-serif;
    color: var(--rose-deep);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
    color: var(--text-body);
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    padding: 110px 6%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,168,114,0.06), transparent 70%);
    top: 50%; right: -200px;
    transform: translateY(-50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 72px;
}

.services-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--rose-deep);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.services-subtitle {
    font-size: 17px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service {
    background: var(--white);
    padding: 40px 34px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(82,168,114,0.08);
    transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease), border-color 0.4s;
    position: relative;
    overflow: hidden;
    cursor: default;
    group: true;
}

.service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223,240,230,0.5), rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: var(--radius-lg);
}

.service::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-mid), var(--rose-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(82,168,114,0.2);
}

.service:hover::before { opacity: 1; }
.service:hover::after  { transform: scaleX(1); }


.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.4s var(--ease), transform 0.4s var(--spring);
    position: relative;
}

.service:hover .service-icon {
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
    transform: rotate(-6deg) scale(1.08);
}

.service i {
    font-size: 24px;
    color: var(--rose-mid);
    transition: color 0.4s, transform 0.4s;
}

.service:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.service h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
}

.service-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s var(--spring);
}

.service-arrow i { font-size: 13px; color: var(--rose-mid); }

.service:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── CONTACT ─── */
.contact {
    padding: 110px 6%;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--rose-deep);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(82,168,114,0.15);
    transition: var(--transition);
    background: var(--rose-mist);
}

.contact-link:hover {
    background: var(--rose-pale);
    border-color: rgba(82,168,114,0.3);
    transform: translateX(6px);
}

.contact-link-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.contact-link-icon.phone { background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft)); }
.contact-link-icon.whats { background: linear-gradient(135deg, #128c4c, #25D366); }

.contact-link-icon i { font-size: 18px; color: white; }
.contact-link-text-label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-light); }
.contact-link-text-val   { font-size: 15px; font-weight: 600; color: var(--rose-mid); }

/* ─── WHATSAPP FORM ─── */
.wa-form-wrap {
    background: var(--cream);
    border: 1px solid rgba(82,168,114,0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.wa-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-deep);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.wa-form-wrap .form-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(82,168,114,0.18);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--text-dark);
    font-weight: 400;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose-soft);
    box-shadow: 0 0 0 3px rgba(82,168,114,0.12);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    line-height: 1.6;
}

.form-group select { cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-wa-send {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #128c4c, #25D366);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
    box-shadow: 0 6px 24px rgba(18,140,76,0.35);
    letter-spacing: 0.2px;
    margin-top: 8px;
}

.btn-wa-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(18,140,76,0.45);
}

.btn-wa-send i { font-size: 20px; }

/* ─── FOOTER ─── */
footer {
    background: var(--rose-deep);
    text-align: center;
    padding: 32px 6%;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

footer .footer-logo {
    font-family: 'DM Serif Display', serif;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
}

footer .footer-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--rose-soft);
    display: inline-block;
}

/* ─── MENU TOGGLE ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 22px; height: 2px;
    background: var(--rose-deep);
    border-radius: 4px;
    transition: var(--transition);
    display: block;
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.30s; }
.reveal-delay-6 { transition-delay: 0.36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .home { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
    .home-visual { display: none; }
    .home-content { max-width: 100%; }
    .home p { max-width: 100%; }
    .home-cta-group { justify-content: center; }
    .home-tag { justify-content: center; }
    .about { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .about-img-wrap { display: flex; justify-content: center; }
    .about-license-chip { right: -10px; bottom: -10px; }
    .service-list { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .stats-bar { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    header { flex-direction: row; }
    nav {
        position: absolute;
        top: 72px; left: 0;
        width: 100%;
        background: rgba(254,252,253,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 20px 0 28px;
        border-bottom: 1px solid rgba(82,168,114,0.12);
        opacity: 0; pointer-events: none;
        transform: translateY(-8px);
        transition: 0.3s var(--ease);
    }
    nav.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
    nav a { font-size: 16px; width: 80%; text-align: center; }
    .menu-toggle { display: flex; }
    .home h2 { font-size: 38px; letter-spacing: -1.5px; }
    .services-header h2, .contact-info h2 { font-size: 36px; }
    .about-text h2 { font-size: 34px; }
    .service-list { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .wa-form-wrap { padding: 28px 22px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .whatsapp-float i { font-size: 25px; }
}