:root {
    --teal: #1ABFA3;
    --teal-dark: #139e87;
    --teal-light: #e6faf7;
    --yellow: #FFD84D;
    --orange: #FF7A35;
    --purple: #7C5CBF;
    --navy: #1a2e4a;
    --white: #ffffff;
    --gray-light: #f4f8fb;
    --gray-text: #4a5568;
    --red: #c53030;
    --red-light: #fff5f5;
    --red-border: #fc8181;
    --border-radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 191, 163, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

nav a.footer-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal);
    color: white;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: scale(1.04);
}


#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e6faf7 0%, #fff9e6 60%, #ffeee6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob1 {
    width: 420px;
    height: 420px;
    background: var(--teal);
    top: -80px;
    left: -80px;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    bottom: -60px;
    right: 10%;
    animation-delay: 3s;
}

.blob3 {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: 30%;
    right: -50px;
    animation-delay: 1.5s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.08); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-text {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: white;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    animation: fadeDown 0.6s ease both;
}

.hero-badge::before {
    content: '🏥';
    font-size: 1rem;
}

h2 {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1rem;
}

h2 span {
    color: var(--teal);
}

/* Hero h2 can be bigger */
#hero h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    animation: fadeDown 0.7s 0.1s ease both;
}

#hero h2 span {
    color: var(--teal);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray-text);
    margin: 1.2rem 0 2rem;
    line-height: 1.7;
    font-weight: 600;
    animation: fadeDown 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeDown 0.7s 0.3s ease both;
}

.btn-primary {
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(26, 191, 163, 0.35);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-wsp {
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-wsp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.hero-img-wrap {
    position: relative;
    flex-shrink: 0;
    animation: fadeRight 0.8s 0.2s ease both;
}

.hero-img-wrap img.logo-anim {
    width: clamp(200px, 32vw, 400px);
    filter: drop-shadow(0 20px 40px rgba(26, 191, 163, 0.25));
    animation: float 4s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.dino-badge {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: var(--yellow);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    animation: pop 0.5s 0.8s ease both;
    white-space: nowrap;
}

@keyframes pop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.trust-strip {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeDown 0.7s 0.4s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-text);
}

.trust-item span.icon {
    font-size: 1.2rem;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-desc {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 1000px;
}


#about {
    background: var(--white);
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.about-photos {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: flex-start;
}

.about-photos img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 191, 163, 0.18);
    transition: transform 0.3s;
}

.about-photos img:first-child {
    margin-top: 30px;
}

.about-photos img:hover {
    transform: scale(1.03) rotate(-1deg);
}

.about-content {
    flex: 1;
    min-width: 260px;
}

.credential-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cred-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--teal);
}

.cred-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cred-title {
    font-weight: 800;
    color: var(--navy);
    font-size: 0.95rem;
}

.cred-desc {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-top: 0.2rem;
}


#services {
    background: var(--gray-light);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.service-card {
    background: white;
    border-radius: 22px;
    padding: 2.2rem 1.8rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 46, 74, 0.07);
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1), box-shadow 0.28s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.07;
    transition: transform 0.4s, opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 46, 74, 0.14);
}

.service-card:hover::after {
    transform: scale(1.3);
    opacity: 0.11;
}

.service-card.c-teal::before  { background: var(--teal); }
.service-card.c-teal::after   { background: var(--teal); }
.service-card.c-yellow::before { background: var(--yellow); }
.service-card.c-yellow::after  { background: var(--yellow); }
.service-card.c-orange::before { background: var(--orange); }
.service-card.c-orange::after  { background: var(--orange); }
.service-card.c-purple::before { background: var(--purple); }
.service-card.c-purple::after  { background: var(--purple); }
.service-card.c-navy::before   { background: var(--navy); }
.service-card.c-navy::after    { background: var(--navy); }
.service-card.c-pink::before   { background: #d4638a; }
.service-card.c-pink::after    { background: #d4638a; }

.svc-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.c-teal .svc-icon-wrap    { background: #e6faf7; }
.c-yellow .svc-icon-wrap  { background: #fffbe6; }
.c-orange .svc-icon-wrap  { background: #fff3ec; }
.c-purple .svc-icon-wrap  { background: #f3effa; }
.c-navy .svc-icon-wrap    { background: #edf0f5; }
.c-pink .svc-icon-wrap    { background: #fdf0f5; }

.svc-title {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.3;
}

.svc-desc {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.65;
    flex: 1;
}


.no-license-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 100%);
    border-radius: 20px;
    padding: 2rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    border: 2.5px solid #f87171;
    box-shadow: 0 6px 28px rgba(197, 48, 48, 0.13);
}

.no-license-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.no-license-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--red);
    font-weight: 900;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.no-license-text p {
    font-size: 0.97rem;
    color: #7f1d1d;
    font-weight: 600;
    line-height: 1.55;
}


#registro {
    background: var(--teal);
    padding: 3rem 2rem;
    text-align: center;
}

.registro-inner {
    max-width: 800px;
    margin: 0 auto;
}

#registro h2 {
    color: white;
    margin-bottom: 0.8rem;
}

#registro p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}


#booking {
    background: white;
}

.booking-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 3rem;
}

.booking-info {
    flex: 1;
    min-width: 260px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.step-text strong {
    font-weight: 800;
    color: var(--navy);
}

.step-text p {
    font-size: 0.92rem;
    color: var(--gray-text);
    margin-top: 0.2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-card {
    flex: 1;
    min-width: 180px;
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--navy);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.contact-card .c-icon { font-size: 2rem; }
.contact-card strong {
    font-weight: 800;
    font-size: 0.95rem;
    display: block;
}
.contact-card span {
    font-size: 0.82rem;
    color: var(--gray-text);
}

.booking-widget {
    flex: 1.2;
    min-width: 300px;
}


.form-box {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    border: 2px solid #dde6ef;
}

.form-box h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.55rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-box > p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    border: 2px solid #dde6ef;
    border-radius: 12px;
    padding: 0.78rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 191, 163, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    margin-top: 0.4rem;
    width: 100%;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(26, 191, 163, 0.35);
}

.form-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    background: #e6faf7;
    border: 2px solid var(--teal);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    margin-top: 1rem;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 0.6rem;
}

.form-success p {
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
}

.form-no-license {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--red-light);
    border: 2px solid #f87171;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-top: 1rem;
}

.form-no-license .fnl-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.form-no-license p {
    font-size: 0.9rem;
    color: #7f1d1d;
    font-weight: 700;
    line-height: 1.45;
}



#testimonials {
    background: var(--gray-light);
}

.test-header {
    text-align: center;
    margin-bottom: 3rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.test-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.8rem;
    transition: transform 0.25s;
    box-shadow: 0 4px 16px rgba(26, 46, 74, 0.06);
}

.test-card:hover {
    transform: translateY(-4px);
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.test-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--navy);
}

.author-source {
    font-size: 0.78rem;
    color: var(--gray-text);
}

.doctoralia-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: white;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: 800;
    margin-top: 2.5rem;
    transition: background 0.2s;
}

.doctoralia-link:hover {
    background: var(--teal-dark);
}

.test-cta {
    text-align: center;
}


footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-note {
    font-size: 0.82rem;
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-no-license {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(229, 62, 62, 0.18);
    border: 1.5px solid rgba(248, 113, 113, 0.5);
    border-radius: 12px;
    padding: 0.7rem 1.4rem;
    margin: 1.2rem auto 0.5rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fca5a5;
}


.wsp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.2s;
    animation: pulse-wsp 2.5s ease infinite;
}

.wsp-float:hover {
    transform: scale(1.12);
}

@keyframes pulse-wsp {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.8); }
}



@media (min-width: 1400px) {
    .section-inner {
        max-width: 1320px;
    }

    .hero-inner {
        max-width: 1320px;
        gap: 6rem;
    }

    #hero h2 {
        font-size: 3.8rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .hero-img-wrap img.logo-anim {
        width: 460px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2.6rem 2.2rem;
    }

    .about-photos img {
        width: 210px;
        height: 260px;
    }

    .test-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media (max-width: 1199px) and (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.8rem 1.4rem;
    }

    .about-photos img {
        width: 150px;
        height: 185px;
    }

    .hero-inner {
        gap: 2.5rem;
    }
}



@media (max-width: 899px) and (min-width: 600px) {
    nav {
        padding: 0.7rem 1.4rem;
    }

    nav a.footer-logo img {
        height: 44px;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.88rem;
    }

    .nav-cta {
        padding: 0.5rem 1.1rem;
        font-size: 0.88rem;
    }

    #hero {
        padding: 7rem 1.5rem 3.5rem;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-img-wrap {
        order: -1;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-strip {
        justify-content: center;
    }

    .hero-img-wrap img.logo-anim {
        width: clamp(180px, 50vw, 300px);
    }

    .dino-badge {
        right: -10px;
        bottom: -8px;
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }

    .about-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-photos {
        justify-content: center;
    }

    .about-photos img {
        width: 140px;
        height: 175px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .booking-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .booking-info,
    .booking-widget {
        width: 100%;
        min-width: unset;
    }

    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        gap: 1.2rem;
    }
}



@media (max-width: 599px) {

    /* Nav */
    nav {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    nav a.footer-logo img {
        height: 38px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }

    /* Hero */
    #hero {
        padding: 6.5rem 1.2rem 3rem;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .hero-img-wrap {
        order: -1;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    #hero h2 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .hero-sub {
        font-size: 0.97rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-wsp {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }

    .hero-img-wrap img.logo-anim {
        width: clamp(160px, 55vw, 240px);
    }

    .dino-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
        font-size: 0.78rem;
    }

    .trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        margin-top: 1.5rem;
    }

    /* Sections */
    section {
        padding: 3.5rem 1.2rem;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-desc {
        font-size: 0.97rem;
    }

    .about-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .about-photos {
        gap: 0.7rem;
        justify-content: center;
    }

    .about-photos img {
        width: 120px;
        height: 150px;
        border-radius: 14px;
    }

    .about-photos img:first-child {
        margin-top: 15px;
    }

    .cred-card {
        padding: 0.9rem 1rem;
        gap: 0.8rem;
    }

    .cred-icon {
        font-size: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.6rem 1.4rem;
        border-radius: 18px;
    }

    .no-license-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.4rem 1.2rem;
        text-align: left;
    }

    .no-license-icon {
        font-size: 2.2rem;
    }

    .no-license-text strong {
        font-size: 1.05rem;
    }


    #registro {
        padding: 2.5rem 1.2rem;
    }


    .booking-layout {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }

    .booking-info,
    .booking-widget {
        width: 100%;
        min-width: unset;
    }

    .form-box {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .form-box h3 {
        font-size: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        font-size: 0.97rem;
        padding: 0.9rem 1.5rem;
    }

    .step {
        gap: 0.9rem;
    }

    .step-num {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .booking-steps .hero-img-wrap {
        position: static;
        margin-top: 0.5rem;
    }

    .booking-steps .dino-badge {
        position: static;
        display: inline-block;
        font-size: 0.8rem;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .test-card {
        padding: 1.4rem;
        border-radius: 18px;
    }

    footer {
        padding: 2.5rem 1.2rem;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-links {
        gap: 1rem;
        row-gap: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .wsp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}


@media (max-width: 380px) {
    #hero h2 {
        font-size: 1.55rem;
    }

    .hero-sub {
        font-size: 0.92rem;
    }

    .btn-primary,
    .btn-wsp {
        font-size: 0.88rem;
        padding: 0.78rem 1.2rem;
    }

    .about-photos img {
        width: 105px;
        height: 130px;
    }

    .nav-cta {
        font-size: 0.78rem;
        padding: 0.5rem 0.8rem;
    }

    h2 {
        font-size: 1.45rem;
    }
}