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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

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

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img img {
    height: 58px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img img {
        height: 46px;
    }
}

.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav a {
    font-weight: 500;
    color: #374151;
}

nav a:hover {
    color: #80c13f;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary {
    background: #80c13f;
    color: white;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #0c466c;
    color: white;
}

.btn-secondary:hover {
    background:#0f766e;
    transform: translateY(-2px);
}

.hero {
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #eff6ff, #f0fdfa);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #80c13f;
}

.hero p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    /*box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);*/
}

.hero-image .doctor-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    display: block;
    /*filter: drop-shadow(0 20px 40px rgba(11, 74, 112, 0.18));*/
}

.badge {
    position: absolute;
    width: 70%;
    bottom: -25px;
    background: white;
    padding: 18px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 2.4rem;
    color: #0f172a;
    margin-bottom: 14px;
}

.section-title p {
    color: #64748b;
    max-width: 680px;
    margin: auto;
}

.about {
    background: #ffffff;
}

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

.about img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-text p {
    color: #475569;
    margin-bottom: 18px;
}

.services {
    background: #f8fafc;
}

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

.card {
    background: white;
    padding: 32px;
    border-radius: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 56px;
    height: 56px;
    background: #ccfbf1;
    color: #0f766e;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.card h3 {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card p {
    color: #64748b;
    font-size: 0.95rem;
}

.benefits {
    background: linear-gradient(135deg, #0f766e, #2563eb);
    color: white;
}

.benefits .section-title h2,
.benefits .section-title p {
    color: white;
}

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

.benefit {
    background: rgba(255, 255, 255, 0.13);
    padding: 28px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.benefit h3 {
    margin-bottom: 10px;
}

.testimonials {
    background: #ffffff;
}

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

.testimonial {
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.location {
    background: #f8fafc;
}

.location-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.location-info {
    background: white;
    padding: 36px;
    border-radius: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
  
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
}

.location-tab {
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    background:#80c13f;
    color: white;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 74, 112, 0.08);
    transition: 0.3s;
}

.location-tab.active,
.location-tab:hover {
    background:#0f766e;
    color: white;
}

.location-carousel {
    position: relative;
}

.location-slide {
    display: none;
    animation: fadeLocation 0.4s ease;
}

.location-slide.active {
    display: block;
}

@keyframes fadeLocation {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 26px;
}

.cta {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    text-align: center;
}

.cta h2 {
    font-size: 2.6rem;
    color: #0f172a;
    margin-bottom: 16px;
}

.cta p {
    color: #475569;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-unit {
    background: rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.footer-unit h3 {
    color: var(--verde-bella);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.footer-unit p {
    color: #dbeafe;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hover_a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    margin-right: 2rem;
}

@media (max-width: 900px) {

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

}

.footer-bottom {
    margin: 40px auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1180px;
    width: 90%;
}

.footer-social a {
    color: var(--verde-bella);
    font-weight: 600;
    transition: 0.3s;
}

.footer-social a:hover {
    color: white;
}

@media (max-width: 900px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

.instagram-icon {
    color: var(--verde-bella);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.instagram-icon:hover {
    color: white;
    transform: translateY(-2px);
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #80c13f;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

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

    .hero-content,
    .about-content,
    .location-box {
        grid-template-columns: 1fr;
    }

    .cards,
    .benefit-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .badge {
        position: static;
        width: 100%;
    }
}