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

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1f2937;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

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

a{
    text-decoration:none;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:100;
}

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

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

.logo-icon{
    width:40px;
    height:40px;
    border:2px solid #d7dce2;
    border-radius:12px;

    background:url('https://clinicadental-globo.com/img/logo-icon.png') center center no-repeat;
    background-size:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.logo-text{
    font-size:15px;
    line-height:1.1;
    font-weight:600;
    color:#0f172a;
}

nav{
    display:flex;
    gap:38px;
}

nav a{
    color:#334155;
    font-size:14px;
    position:relative;
}

nav a.active::after{
    content:"";
    position:absolute;
    width:100%;
    height:2px;
    background:#0d2b59;
    left:0;
    bottom:-14px;
}

.header-btn{
    background:#0d2b59;
    color:#fff;
    padding:15px 28px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.header-btn:hover{
    background:#123b77;
}

/* ================= HERO ================= */

.hero{
    padding:70px 0 50px;
    background:#f8fafc;
}

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

.hero-sub{
    color:#b68b61;
    letter-spacing:2px;
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:0.95;
    font-weight:600;
    color:#111827;
    margin-bottom:28px;
}

.hero p{
    color:#6b7280;
    line-height:1.9;
    font-size:16px;
    max-width:520px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}

.primary-btn{
    background:#0d2b59;
    color:#fff;
    padding:16px 30px;
    border-radius:8px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.secondary-btn{
    color:#111827;
    font-weight:500;
}

.hero-features{
    display:flex;
    gap:40px;
}

.hero-feature{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.hero-feature-icon{
    width:44px;
    height:44px;
    border:1px solid #e5e7eb;
    border-radius:50%;
}

.hero-feature h4{
    font-size:15px;
    margin-bottom:5px;
}

.hero-feature p{
    font-size:13px;
    margin:0;
    line-height:1.6;
}

.hero-image img{
    border-radius:20px;
    height:700px;
    object-fit:cover;
}

/* ================= SECTION GENERAL ================= */

.section{
    padding:110px 0;
}

.section-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:60px;
}

.section-tag{
    color:#b68b61;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
    font-weight:600;
}

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    line-height:1;
    font-weight:600;
    color:#111827;
}

.section-text{
    max-width:450px;
    color:#6b7280;
    line-height:1.9;
}

.dark-btn{
    background:#0d2b59;
    color:#fff;
    padding:16px 26px;
    border-radius:8px;
    font-weight:600;
    white-space:nowrap;
}

/* ================= SERVICES ================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.service-card{
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-icon{
    width:42px;
    height:42px;
    border:1px solid #e5e7eb;
    border-radius:50%;
    margin-bottom:18px;
}

.service-card h3{
    font-size:23px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.service-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:14px;
    margin-bottom:20px;
}

.service-link{
    color:#111827;
    font-weight:600;
}

/* ================= ABOUT ================= */

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

.about-image img{
    border-radius:22px;
    height:650px;
    object-fit:cover;
}

.about-title{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    line-height:1;
    margin-bottom:30px;
}

.about-text{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:40px;
}

.about-list{
    display:flex;
    flex-direction:column;
    gap:30px;
    margin-bottom:40px;
}

.about-item{
    display:flex;
    gap:18px;
}

.about-item-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    border:1px solid #e5e7eb;
    flex-shrink:0;
}

.about-item h4{
    margin-bottom:10px;
    font-size:18px;
}

.about-item p{
    color:#6b7280;
    line-height:1.7;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
    background:#fafafa;
}

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

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid #ececec;
}

.quote{
    font-size:45px;
    color:#d4d4d4;
    margin-bottom:10px;
}

.testimonial p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.testimonial-user img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
}

.stars{
    color:#f4b400;
    margin-top:5px;
}

/* ================= CTA ================= */

.cta{
    background:#071c3b;
    color:#fff;
    padding:60px 0;
}

.cta-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    margin-bottom:15px;
}

.cta p{
    color:#d1d5db;
    line-height:1.8;
}

.cta-features{
    display:flex;
    gap:35px;
    align-items:center;
}

.cta-feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#e5e7eb;
}

.white-btn{
    background:#fff;
    color:#071c3b;
    padding:16px 28px;
    border-radius:8px;
    font-weight:700;
}

/* ================= FOOTER ================= */

footer{
    background:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
    border-bottom:1px solid #ececec;
}

.footer-logo{
    margin-bottom:25px;
}

.footer-text{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:30px;
}

.socials{
    display:flex;
    gap:12px;
}

.social{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #e5e7eb;
}

.footer-col h4{
    margin-bottom:25px;
    font-size:18px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    color:#6b7280;
}

.footer-bottom{
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    color:#9ca3af;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

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

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

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero h1,
    .section-title,
    .about-title,
    .cta h2{
        font-size:48px;
    }

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

    .section-top,
    .cta-inner,
    .hero-features{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-image img{
        height:500px;
    }

}


/* ================= MOBILE MENU ================= */

.menu-toggle{
    width:46px;
    height:46px;
    border-radius:10px;
    background:#0d2b59;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
}

/* PANEL */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:360px;
    max-width:90%;
    height:100vh;
    background:#fff;
    z-index:9999;
    padding:35px;
    transition:.45s ease;
    box-shadow:-10px 0 40px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.mobile-menu-header img{
    height:55px;
    width:auto;
}

.close-menu{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
    color:#111827;
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.mobile-nav a{
    color:#111827;
    font-size:18px;
    font-weight:500;
}

.mobile-btn{
    margin-top:20px;
    background:#0d2b59;
    color:#fff !important;
    padding:16px 24px;
    border-radius:10px;
    text-align:center;
    font-weight:600;
}

/* OVERLAY */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* RESPONSIVE */

@media(max-width:950px){

    nav{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

}


/* ================= POPUPS ================= */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;
    z-index:99999;

    padding:20px;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-box{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    position:relative;
    animation:popupShow .3s ease;
}

@keyframes popupShow{

    from{
        transform:translateY(20px);
        opacity:0;
    }

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

}

.popup-close{
    position:absolute;
    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#f3f4f6;

    cursor:pointer;

    font-size:18px;
}

.popup-box h2{
    font-size:36px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.popup-box p{
    color:#6b7280;
    margin-bottom:30px;
    line-height:1.7;
}

/* FORM */

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#111827;
}

.form-group input,
.form-group select{
    width:100%;
    height:58px;

    border:1px solid #e5e7eb;
    border-radius:12px;

    padding:0 18px;

    font-size:15px;

    outline:none;
}

.popup-btn{
    width:100%;
    height:58px;

    border:none;
    border-radius:12px;

    background:#0d2b59;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.popup-btn:hover{
    background:#123b77;
}

/* MAPS */

.popup-maps{
    max-width:900px;
    padding:15px;
}

.popup-maps iframe{
    width:100%;
    height:600px;
    border:none;
    border-radius:18px;
}

@media(max-width:768px){

    .popup-box{
        padding:30px 22px;
    }

    .popup-maps iframe{
        height:420px;
    }

}


/**/
@media(max-width:768px){

    .cta-features{
        flex-wrap:wrap;
        gap:20px;
    }

    .white-btn{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

}

/*icons*/

.hero-feature-icon{
    width:44px;
    height:44px;

    border:1px solid #e5e7eb;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    color:#0d2b59;
    font-size:18px;

    background:#fff;
}


.about-item-icon{
    width:54px;
    height:54px;

    border-radius:50%;
    border:1px solid #e5e7eb;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0d2b59;
    font-size:20px;

    background:#fff;
}


.socials{
    display:flex;
    gap:12px;
}

.social{
    width:42px;
    height:42px;

    border-radius:50%;
    border:1px solid #e5e7eb;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0d2b59;
    font-size:18px;

    transition:.3s;
}

.social:hover{
    background:#0d2b59;
    color:#fff;
    transform:translateY(-3px);
}


/* ================= BICHECTOMIA BANNER ================= */

.bichectomia-banner{
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,#12366e 0%,#02142e 60%);

    padding:90px 0;
}

.bichectomia-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at bottom left,
    rgba(255,255,255,.08),
    transparent 40%);
}

.bichectomia-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

/* LEFT */

.bichectomia-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    border:1px solid rgba(255,215,140,.4);
    border-radius:14px;

    color:#f6c47a;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;

    margin-bottom:35px;
}

.bichectomia-content h2{
    font-size:110px;
    line-height:.9;

    color:#fff;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;

    margin-bottom:12px;
}

.bichectomia-content h3{
    color:#e8c18b;

    font-size:28px;
    letter-spacing:6px;
    font-weight:500;

    margin-bottom:30px;
}

.line{
    width:90px;
    height:2px;

    background:#d7a96d;

    margin-bottom:35px;
}

.bichectomia-content p{
    color:#d9dde6;

    font-size:21px;
    line-height:1.8;

    max-width:650px;

    margin-bottom:40px;
}

/* PRICE */

.bichectomia-price{
    width:320px;

    border:1px solid rgba(255,215,140,.5);
    border-radius:22px;

    padding:28px;

    margin-bottom:45px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(10px);

    box-shadow:0 0 30px rgba(255,215,140,.12);
}

.bichectomia-price span{
    display:block;

    color:#f6c47a;

    letter-spacing:3px;
    font-size:18px;

    margin-bottom:10px;
}

.bichectomia-price strong{
    font-size:90px;
    line-height:1;

    color:#fff;

    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

/* FEATURES */

.bichectomia-features{
    display:flex;
    gap:45px;
    flex-wrap:wrap;

    margin-bottom:45px;
}

.bichectomia-feature{
    display:flex;
    align-items:center;
    gap:14px;

    color:#fff;
}

.bichectomia-feature i{
    color:#f6c47a;
    font-size:28px;
}

.bichectomia-feature span{
    line-height:1.4;
    font-size:17px;
}

/* BUTTON */

.bichectomia-btn{
    width:420px;
    max-width:100%;

    height:78px;

    border-radius:18px;

    background:linear-gradient(135deg,#f3d09c,#dca85b);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    color:#02142e;

    font-size:24px;
    font-weight:700;

    transition:.3s;

    margin-bottom:28px;
}

.bichectomia-btn:hover{
    transform:translateY(-4px);
}

.bichectomia-btn i{
    font-size:20px;
}

/* BOTTOM */

.bichectomia-bottom{
    display:flex;
    align-items:center;
    gap:12px;

    color:#dfe6f2;
}

.bichectomia-bottom i{
    color:#f6c47a;
}

/* IMAGE */

.bichectomia-image{
    position:relative;
}

.bichectomia-image img{
    width:100%;
    border-radius:0 0 0 200px;

    border:4px solid rgba(255,215,140,.6);

    object-fit:cover;
}

/* BADGE */

.bichectomia-badge{
    position:absolute;

    bottom:30px;
    left:-40px;

    width:190px;
    height:190px;

    border-radius:50%;

    background:#02142e;

    border:2px solid rgba(255,215,140,.5);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;

    text-align:center;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.bichectomia-badge i{
    font-size:34px;
    color:#f6c47a;
}

.bichectomia-badge span{
    line-height:1.5;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:1100px){

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

    .bichectomia-content h2{
        font-size:80px;
    }

}

@media(max-width:768px){

    .bichectomia-banner{
        padding:70px 0;
    }

    .bichectomia-content h2{
        font-size:62px;
    }

    .bichectomia-content h3{
        font-size:18px;
        letter-spacing:3px;
    }

    .bichectomia-content p{
        font-size:17px;
    }

    .bichectomia-price{
        width:100%;
    }

    .bichectomia-price strong{
        font-size:70px;
    }

    .bichectomia-btn{
        width:100%;
        font-size:19px;
        height:68px;
    }

    .bichectomia-image img{
        border-radius:30px;
    }

    .bichectomia-badge{
        width:140px;
        height:140px;

        left:10px;
        bottom:10px;
    }

    .bichectomia-badge span{
        font-size:13px;
    }

}

/**/

.service-icon{
    width:42px;
    height:42px;

    border:1px solid #e5e7eb;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    background:#fff;

    color:#0d2b59;
    font-size:16px;

    transition:.3s;
}

.service-card:hover .service-icon{
    background:#0d2b59;
    color:#fff;
    border-color:#0d2b59;
}

/*IMPLANTES DENTALES*/

.implant-hero{
  background:#061d3a;
  color:#fff;
  overflow:hidden;
}

.implant-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-height:680px;
}

.breadcrumb{
  color:#c7a46b;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:35px;
}

.implant-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:86px;
  line-height:.9;
  margin-bottom:25px;
}

.implant-hero h1 span{
  color:#e5bd78;
}

.implant-hero h3{
  font-size:28px;
  font-weight:400;
  margin-bottom:25px;
}

.implant-hero p{
  max-width:560px;
  color:#d7deea;
  line-height:1.8;
  font-size:18px;
  margin-bottom:35px;
}

.implant-points{
  display:flex;
  gap:30px;
  margin-bottom:40px;
}

.implant-points div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:15px;
  font-weight:600;
}

.implant-points i{
  color:#e5bd78;
  font-size:25px;
}

.implant-btn{
  display:inline-flex;
  align-items:center;
  gap:20px;
  background:linear-gradient(135deg,#f4d59c,#d9a554);
  color:#061d3a;
  padding:22px 38px;
  border-radius:10px;
  font-weight:800;
  text-transform:uppercase;
}

.implant-hero-image{
  position:relative;
  height:680px;
}

.implant-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-left:8px solid #e5bd78;
  border-bottom-left-radius:320px;
}

.implant-badge{
  position:absolute;
  right:50px;
  bottom:45px;
  background:#061d3a;
  color:#fff;
  padding:25px 35px;
  border-radius:8px;
  font-weight:700;
  display:flex;
  gap:15px;
  align-items:center;
}

.implant-badge i{
  color:#e5bd78;
  font-size:34px;
}

.implant-section{
  padding:90px 0;
  background:#fff;
}

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

.center-title span,
.tech-content span{
  color:#d9a554;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.center-title h2,
.tech-content h2{
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  color:#071c3b;
  margin-top:12px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.benefit-card{
  background:#fff;
  border:1px solid #eef0f4;
  padding:38px 25px;
  text-align:center;
  border-radius:8px;
  box-shadow:0 15px 35px rgba(0,0,0,.04);
}

.benefit-card i{
  width:65px;
  height:65px;
  border:1px solid #d9a554;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  color:#d9a554;
  font-size:25px;
}

.benefit-card h3{
  color:#071c3b;
  font-size:18px;
  margin-bottom:15px;
}

.benefit-card p{
  color:#6b7280;
  line-height:1.7;
  font-size:14px;
}

.process-section{
  background:#fbfbfb;
}

.process-line{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  position:relative;
}

.process-item{
  text-align:center;
  position:relative;
}

.process-item b{
  background:#061d3a;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.process-item i{
  width:65px;
  height:65px;
  border:1px solid #d9a554;
  border-radius:50%;
  color:#d9a554;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:24px;
}

.process-item h3{
  color:#071c3b;
  margin-bottom:12px;
}

.process-item p{
  color:#6b7280;
  line-height:1.7;
  font-size:14px;
}

.implant-tech{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#f7fbff;
}

.tech-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tech-content{
  padding:90px;
}

.tech-content p{
  color:#6b7280;
  line-height:1.8;
  margin:25px 0 45px;
}

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

.tech-grid i{
  color:#d9a554;
  font-size:32px;
  margin-bottom:18px;
}

.tech-grid h3{
  color:#071c3b;
  margin-bottom:10px;
}

.tech-grid p{
  margin:0;
  font-size:14px;
}

.testimonials-light{
  background:#f5fbff;
}

.implant-testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.implant-testimonial{
  background:#fff;
  padding:40px;
  border-radius:8px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.implant-testimonial .stars{
  color:#d9a554;
  margin-bottom:20px;
}

.implant-testimonial p{
  color:#6b7280;
  font-style:italic;
  line-height:1.8;
  margin-bottom:25px;
}

.implant-testimonial h4{
  color:#071c3b;
}

.implant-testimonial small{
  color:#9ca3af;
}

@media(max-width:1000px){
  .implant-hero-grid,
  .implant-tech{
    grid-template-columns:1fr;
  }

  .benefits-grid,
  .process-line,
  .implant-testimonials{
    grid-template-columns:1fr 1fr;
  }

  .implant-hero-image{
    height:480px;
  }

  .implant-hero-image img{
    border-radius:30px;
    border:4px solid #e5bd78;
  }

  .tech-content{
    padding:60px 30px;
  }
}

@media(max-width:650px){
  .implant-hero-grid{
    min-height:auto;
    padding-top:60px;
  }

  .implant-hero h1{
    font-size:58px;
  }

  .implant-points,
  .benefits-grid,
  .process-line,
  .tech-grid,
  .implant-testimonials{
    grid-template-columns:1fr;
    display:grid;
  }

  .implant-points{
    gap:18px;
  }

  .center-title h2,
  .tech-content h2{
    font-size:38px;
  }

  .implant-hero-image {
    margin-top: 3em
    }

}


.breadcrumb {
    text-transform: uppercase;
    color: #c7a46b;
}

.breadcrumb a{
    color: #c7a46b;
}


/* ================= ODONTOLOGÍA GENERAL ================= */

.general-hero{
  background:linear-gradient(135deg,#f8fbff 0%,#eef6ff 100%);
  padding:90px 0;
  overflow:hidden;
}

.general-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.general-tag{
  display:inline-block;
  color:#d9a554;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
  margin-bottom:22px;
}

.general-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:82px;
  line-height:.9;
  color:#071c3b;
  margin-bottom:28px;
}

.general-hero h1 span{
  color:#d9a554;
}

.general-hero p{
  color:#5f6b7a;
  font-size:19px;
  line-height:1.8;
  max-width:620px;
  margin-bottom:35px;
}

.general-actions{
  display:flex;
  gap:25px;
  align-items:center;
  flex-wrap:wrap;
}

.general-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:#071c3b;
  color:#fff;
  padding:20px 34px;
  border-radius:14px;
  font-weight:700;
}

.general-link{
  color:#071c3b;
  font-weight:700;
}

.general-hero-card{
  position:relative;
}

.general-hero-card img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 25px 60px rgba(7,28,59,.14);
}

.general-floating-card{
  position:absolute;
  left:-35px;
  bottom:35px;
  width:320px;
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  display:flex;
  gap:18px;
  align-items:center;
}

.general-floating-card i{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#eef6ff;
  color:#071c3b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.general-floating-card strong{
  display:block;
  color:#071c3b;
  margin-bottom:5px;
}

.general-floating-card span{
  color:#6b7280;
  font-size:14px;
  line-height:1.5;
}

/* SERVICES */

.general-services{
  padding:100px 0;
  background:#fff;
}

.general-section-title{
  text-align:center;
  max-width:780px;
  margin:0 auto 60px;
}

.general-section-title span,
.general-care-content span,
.general-cta span{
  color:#d9a554;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.general-section-title h2,
.general-care-content h2,
.general-cta h2{
  font-family:'Cormorant Garamond',serif;
  font-size:52px;
  line-height:1;
  color:#071c3b;
  margin:15px 0 18px;
}

.general-section-title p,
.general-care-content p,
.general-cta p{
  color:#6b7280;
  line-height:1.8;
  font-size:17px;
}

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

.general-service-card{
  border:1px solid #edf0f5;
  border-radius:24px;
  padding:35px;
  background:#fff;
  transition:.3s;
}

.general-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(7,28,59,.08);
}

.general-service-card i{
  width:60px;
  height:60px;
  background:#f7fbff;
  border:1px solid #e5edf6;
  color:#071c3b;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:25px;
}

.general-service-card h3{
  color:#071c3b;
  font-size:22px;
  margin-bottom:14px;
}

.general-service-card p{
  color:#6b7280;
  line-height:1.7;
}

/* CARE */

.general-care{
  background:#f8fbff;
  padding:100px 0;
}

.general-care-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.general-care-image img{
  width:100%;
  height:540px;
  object-fit:cover;
  border-radius:34px;
}

.general-checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:35px;
}

.general-checks div{
  display:flex;
  gap:12px;
  align-items:center;
  color:#071c3b;
  font-weight:700;
}

.general-checks i{
  color:#d9a554;
}

/* PROCESS */

.general-process{
  padding:100px 0;
  background:#fff;
}

.general-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.general-process-item{
  background:#071c3b;
  color:#fff;
  padding:35px;
  border-radius:26px;
  min-height:230px;
}

.general-process-item b{
  color:#d9a554;
  font-size:30px;
}

.general-process-item h3{
  margin:25px 0 12px;
  font-size:22px;
}

.general-process-item p{
  color:#dbe4f0;
  line-height:1.7;
}

/* CTA */

.general-cta{
  background:#071c3b;
  color:#fff;
  padding:70px 0;
}

.general-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.general-cta h2{
  color:#fff;
  margin-bottom:10px;
}

.general-cta p{
  color:#dbe4f0;
}

.general-cta .general-btn{
  background:linear-gradient(135deg,#f4d59c,#d9a554);
  color:#071c3b;
  white-space:nowrap;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .general-hero-grid,
  .general-care-grid{
    grid-template-columns:1fr;
  }

  .general-services-grid{
    grid-template-columns:1fr 1fr;
  }

  .general-process-grid{
    grid-template-columns:1fr 1fr;
  }

  .general-floating-card{
    left:25px;
  }

}

@media(max-width:650px){

  .general-hero h1{
    font-size:58px;
  }

  .general-section-title h2,
  .general-care-content h2,
  .general-cta h2{
    font-size:38px;
  }

  .general-services-grid,
  .general-process-grid,
  .general-checks{
    grid-template-columns:1fr;
  }

  .general-hero-card img,
  .general-care-image img{
    height:420px;
  }

  .general-floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:20px;
  }

  .general-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .general-cta .general-btn{
    width:100%;
  }

}


/* ================= HERO ================= */

.bichectomia-hero{
    background:
    linear-gradient(135deg,#fdfdfd 0%,#f5f7fb 100%);

    padding:90px 0;
    overflow:hidden;
}

.bichectomia-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.bichectomia-tag{
    display:inline-block;

    padding:12px 18px;

    border-radius:100px;

    background:#eef3fb;

    color:#0d2b59;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:28px;
}

.bichectomia-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    line-height:.9;

    color:#081c38;

    margin-bottom:18px;
}

.bichectomia-hero h1 span{
    color:#c59a62;
}

.bichectomia-hero h3{
    font-size:30px;
    font-weight:500;

    color:#0d2b59;

    margin-bottom:28px;
}

.bichectomia-hero p{
    color:#5d6877;

    font-size:18px;
    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;
}

/* POINTS */

.bichectomia-points{
    display:flex;
    gap:28px;
    flex-wrap:wrap;

    margin-bottom:42px;
}

.bichectomia-points div{
    display:flex;
    align-items:center;
    gap:14px;

    color:#081c38;
    font-weight:700;
    line-height:1.4;
}

.bichectomia-points i{
    width:54px;
    height:54px;

    border-radius:18px;

    background:#fff;

    border:1px solid #e8edf5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#c59a62;
    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

/* ACTIONS */

.bichectomia-actions{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.bichectomia-btn{
    width:320px;
    max-width:100%;

    height:68px;

    border-radius:16px;

    background:linear-gradient(135deg,#e2c090,#c59a62);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    color:#081c38;

    font-size:16px;
    font-weight:800;

    transition:.3s;
}

.bichectomia-btn:hover{
    transform:translateY(-3px);
}

.doctor-trust{
    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;

    width:420px;
    max-width:100%;

    padding:20px;

    border-radius:22px;

    border:1px solid #edf1f6;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.doctor-trust i{
    width:58px;
    height:58px;

    border-radius:50%;

    background:#f5f7fb;

    color:#0d2b59;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.doctor-trust strong{
    display:block;

    color:#081c38;

    margin-bottom:6px;
}

.doctor-trust span{
    color:#6b7280;
    line-height:1.6;
    font-size:14px;
}

/* IMAGE */

.bichectomia-hero-image{
    position:relative;
}

.bichectomia-hero-image img{
    width:100%;
    height:700px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:0 30px 70px rgba(0,0,0,.10);
}

/* BADGE */

.bichectomia-badge{
    position:absolute;

    bottom:30px;
    right:-20px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:#081c38;

    border:4px solid rgba(255,255,255,.7);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;

    text-align:center;

    color:#fff;

    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.bichectomia-badge i{
    color:#d7b07c;
    font-size:34px;
}

.bichectomia-badge{
    font-size:15px;
    line-height:1.5;
    font-weight:700;
    letter-spacing:1px;
}

/* TRUST */

.bichectomia-trust{
    padding:90px 0;
    background:#fff;
}

.bichectomia-trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.trust-card{
    padding:45px 35px;

    border-radius:28px;

    background:#fff;

    border:1px solid #edf1f6;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.04);
}

.trust-card i{
    width:78px;
    height:78px;

    border-radius:24px;

    background:#f6f8fc;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    color:#c59a62;

    font-size:30px;
}

.trust-card h3{
    color:#081c38;

    font-size:24px;

    margin-bottom:16px;
}

.trust-card p{
    color:#6b7280;

    line-height:1.8;
}

/* TITLES */

.bichectomia-title{
    text-align:center;

    max-width:760px;

    margin:0 auto 60px;
}

.bichectomia-title span,
.bichectomia-cta span{
    color:#c59a62;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.bichectomia-title h2,
.bichectomia-cta h2{
    font-family:'Cormorant Garamond',serif;

    font-size:58px;
    line-height:1;

    color:#081c38;

    margin-top:15px;
}

/* BENEFITS */

.bichectomia-benefits{
    padding:100px 0;
    background:#f8fafc;
}

.bichectomia-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.benefit-box{
    background:#fff;

    padding:38px 30px;

    border-radius:24px;

    border:1px solid #edf1f6;

    transition:.3s;
}

.benefit-box:hover{
    transform:translateY(-5px);
}

.benefit-box i{
    width:64px;
    height:64px;

    border-radius:20px;

    background:#f6f8fc;

    color:#c59a62;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    margin-bottom:24px;
}

.benefit-box h3{
    color:#081c38;

    font-size:22px;

    margin-bottom:14px;
}

.benefit-box p{
    color:#6b7280;
    line-height:1.8;
}

/* PROCESS */

.bichectomia-process{
    padding:100px 0;
    background:#fff;
}

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

.process-box{
    background:#081c38;

    color:#fff;

    border-radius:28px;

    padding:40px 30px;

    min-height:260px;
}

.process-box b{
    color:#d7b07c;

    font-size:34px;
}

.process-box h3{
    font-size:24px;

    margin:25px 0 15px;
}

.process-box p{
    color:#dbe5f1;

    line-height:1.8;
}

/* CTA */

.bichectomia-cta{
    background:
    linear-gradient(135deg,#081c38 0%,#102d57 100%);

    padding:80px 0;

    color:#fff;
}

.bichectomia-cta-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.bichectomia-cta h2{
    color:#fff;

    margin:14px 0 15px;
}

.bichectomia-cta p{
    color:#dbe5f1;

    line-height:1.8;

    max-width:680px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .bichectomia-hero-grid,
    .bichectomia-trust-grid,
    .bichectomia-benefits-grid,
    .process-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:900px){

    .bichectomia-hero-grid{
        grid-template-columns:1fr;
    }

    .bichectomia-hero-image img{
        height:520px;
    }

}

@media(max-width:650px){

    .bichectomia-hero{
        padding:70px 0;
    }

    .bichectomia-hero h1{
        font-size:58px;
    }

    .bichectomia-hero h3{
        font-size:22px;
    }

    .bichectomia-title h2,
    .bichectomia-cta h2{
        font-size:40px;
    }

    .bichectomia-trust-grid,
    .bichectomia-benefits-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .bichectomia-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .bichectomia-btn{
        width:100%;
    }

    .bichectomia-badge{
        width:130px;
        height:130px;

        right:10px;
        bottom:10px;

        font-size:11px;
    }

    .bichectomia-badge i{
        font-size:22px;
    }

}


/* ================= BEFORE AFTER ================= */

.before-after{
    padding:110px 0;
    background:#f8fafc;
}

.before-after-slider{
    position:relative;

    width:100%;
    max-width:1200px;

    height:650px;

    margin:0 auto;

    overflow:hidden;

    border-radius:36px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

/* IMAGES */

.before-after-slider img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.after-wrapper{
    position:absolute;
    inset:0;

    width:50%;
    overflow:hidden;
}

/* LINE */

.slider-line{
    position:absolute;

    top:0;
    bottom:0;
    left:50%;

    width:3px;

    background:#fff;

    transform:translateX(-50%);

    z-index:5;

    box-shadow:0 0 20px rgba(0,0,0,.15);
}

/* BUTTON */

.slider-button{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:78px;
    height:78px;

    border-radius:50%;

    background:#fff;

    z-index:6;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#081c38;

    font-size:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.20);
}

/* RANGE */

.slider-range{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    opacity:0;

    cursor:ew-resize;

    z-index:10;
}

/* LABELS */

.slider-label{
    position:absolute;

    top:28px;

    padding:14px 22px;

    border-radius:100px;

    background:rgba(8,28,56,.78);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:15px;
    font-weight:700;

    z-index:8;
}

.before-label{
    left:28px;
}

.after-label{
    right:28px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .before-after{
        padding:80px 0;
    }

    .before-after-slider{
        height:420px;
        border-radius:24px;
    }

    .slider-button{
        width:58px;
        height:58px;
        font-size:18px;
    }

    .slider-label{
        font-size:13px;
        padding:10px 16px;
    }

}




/* ================= PRICE LINK ================= */

.price-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#071c3b;
    color:#fff;
    padding:16px 26px;
    border-radius:12px;
    font-weight:700;
}


/* ================= QUOTE POPUP ================= */

.quote-overlay{
    position:fixed;
    inset:0;
    background:rgba(3,12,28,.72);
    backdrop-filter:blur(8px);
    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    transition:.3s;

    padding:20px;
}

.quote-overlay.active{
    opacity:1;
    visibility:visible;
}

.quote-box{
    width:100%;
    max-width:920px;
    max-height:92vh;
    overflow-y:auto;

    background:#fff;
    border-radius:32px;
    padding:45px;

    position:relative;

    box-shadow:0 30px 100px rgba(0,0,0,.25);
}

.quote-close{
    position:absolute;
    top:22px;
    right:22px;

    width:44px;
    height:44px;

    border:none;
    border-radius:50%;

    background:#f3f5f8;
    color:#071c3b;

    font-size:20px;
    cursor:pointer;
}

.quote-step{
    display:none;
}

.quote-step.active{
    display:block;
}

.quote-tag{
    display:inline-block;
    color:#c59a62;
    font-size:13px;
    letter-spacing:2px;
    font-weight:800;
    margin-bottom:16px;
}

.quote-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#071c3b;
    line-height:1;
    margin-bottom:16px;
}

.quote-box p{
    color:#6b7280;
    line-height:1.8;
    font-size:16px;
    margin-bottom:32px;
}


/* OPTIONS */

.quote-options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.quote-options button{
    border:1px solid #e8edf5;
    background:#fff;

    border-radius:22px;
    padding:24px;

    text-align:left;
    cursor:pointer;

    display:flex;
    align-items:center;
    gap:18px;

    transition:.3s;

    min-height:105px;
}

.quote-options button:hover{
    transform:translateY(-4px);
    border-color:#c59a62;
    box-shadow:0 18px 45px rgba(7,28,59,.09);
}

.quote-options i{
    width:52px;
    height:52px;

    border-radius:16px;

    background:#f7f9fc;
    color:#c59a62;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    grid-row:span 2;
}

.quote-options span{
    color:#071c3b;
    font-weight:800;
    font-size:22px;
    line-height:1.3;
}


/* PRICE STEP */

.quote-price-wrap{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

    margin:30px 0 22px;
}

.quote-price{
    display:flex;
    align-items:flex-end;
    gap:10px;

    color:#081c38;

    font-family:'Cormorant Garamond',serif;
    line-height:1;
}

.quote-price small{
    font-size:26px;
    color:#c59a62;
    margin-bottom:8px;
}

.quote-price strong{
    font-size:72px;
    font-weight:700;
}

.quote-price-note{
    padding:10px 16px;

    border-radius:100px;

    background:#f5f7fb;

    color:#6b7280;

    font-size:13px;
    font-weight:600;
}

.quote-form{
    display:grid;
    gap:16px;
}

.quote-form input,
.quote-form textarea{
    width:100%;

    border:1px solid #e5eaf1;
    border-radius:14px;

    padding:17px 18px;

    font-size:15px;
    outline:none;
}

.quote-form textarea{
    min-height:115px;
    resize:vertical;
}

.quote-form button{
    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#e2c090,#c59a62);
    color:#071c3b;

    padding:18px 24px;

    font-size:16px;
    font-weight:800;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.quote-form .quote-back{
    background:#f3f5f8;
    color:#071c3b;
}


/* RESPONSIVE */

@media(max-width:768px){

    .quote-box{
        padding:35px 22px;
        border-radius:24px;
    }

    .quote-box h2{
        font-size:36px;
        padding-right:45px;
    }

    .quote-options{
        grid-template-columns:1fr;
    }

    .quote-price{
        font-size:42px;
        width:100%;
        text-align:center;
    }

}

/* ================= FLOATING QUOTE BUTTON ================= */

.floating-quote-btn{
    position:fixed;

    right:25px;
    bottom:25px;

    z-index:99998;

    display:flex;
    align-items:center;
    gap:16px;

    min-width:290px;

    padding:18px 24px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#081c38 0%,#123763 100%);

    color:#fff;

    box-shadow:
    0 20px 50px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.06);

    overflow:hidden;

    transition:.35s;
}

.floating-quote-btn:hover{
    transform:
    translateY(-5px)
    scale(1.02);
}

/* ICON */

.floating-quote-btn i{
    position:relative;

    width:62px;
    height:62px;

    border-radius:20px;

    background:
    linear-gradient(135deg,#e2c090,#c59a62);

    color:#081c38;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    flex-shrink:0;

    z-index:2;
}

/* TEXT */

.floating-quote-btn strong{
    display:block;

    font-size:18px;
    font-weight:800;

    margin-bottom:4px;
}

.floating-quote-btn small{
    color:#d6e0ee;

    font-size:13px;

    letter-spacing:.5px;
}

/* PULSE */

.pulse-ring{
    position:absolute;

    width:18px;
    height:18px;

    background:#25D366;

    border-radius:50%;

    top:16px;
    right:16px;

    z-index:3;
}

.pulse-ring::before{
    content:'';

    position:absolute;
    inset:0;

    border-radius:50%;

    background:#25D366;

    animation:pulseQuote 1.8s infinite;
}

@keyframes pulseQuote{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    70%{
        transform:scale(2.5);
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

/* GLOW */

.floating-quote-btn::after{
    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.14),
    transparent 45%);

    pointer-events:none;
}

/* MOBILE */

@media(max-width:768px){

    .floating-quote-btn{

        right:14px;
        left:14px;
        bottom:14px;

        min-width:auto;

        border-radius:20px;

        padding:16px 18px;
    }

    .floating-quote-btn strong{
        font-size:16px;
    }

    .floating-quote-btn i{
        width:56px;
        height:56px;
        font-size:24px;
    }

}


.quote-more-info{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:5px;

    color:#081c38;

    font-weight:700;

    transition:.3s;
}

.quote-more-info:hover{
    gap:14px;
    color:#c59a62;
}

/*BLOG*/

/* =========================
BLOG HERO
========================= */

.blog-hero{
    background:#05224c;
    color:#fff;
    padding:90px 0;
    margin-bottom:2em
}

.blog-hero .breadcrumb{
    font-size:14px;
    margin-bottom:25px;
    opacity:.8;
    padding: 1em 0
}

.blog-hero .breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.blog-category{
    display:inline-block;
    background:#d6b16d;
    color:#05224c;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.blog-hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.blog-excerpt{
    max-width:800px;
    font-size:22px;
    line-height:1.7;
    opacity:.9;
}

.blog-meta{
    margin-top:30px;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.blog-meta span{
    font-size:14px;
}


/* =========================
IMAGEN DESTACADA
========================= */

.blog-featured-image{
    margin-top:-60px;
    margin-bottom:70px;
}

.blog-featured-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}


/* =========================
CONTENIDO
========================= */

.blog-container{
    max-width:900px;
}

.blog-content{
    padding-bottom:80px;
}

.blog-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.blog-content h2{
    font-size:42px;
    color:#05224c;
    margin-top:60px;
    margin-bottom:25px;
}

.blog-content h3{
    color:#05224c;
}

.blog-content ul{
    padding-left:25px;
    margin-bottom:30px;
}

.blog-content li{
    margin-bottom:12px;
    line-height:1.8;
    color:#555;
}


/* =========================
CAJA DESTACADA
========================= */

.blog-highlight{
    background:#f8f9fb;
    border-left:5px solid #d6b16d;
    padding:35px;
    border-radius:15px;
    margin:50px 0;
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.blog-highlight i{
    font-size:40px;
    color:#d6b16d;
}

.blog-highlight h3{
    margin-bottom:10px;
}


/* =========================
GRID BENEFICIOS
========================= */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin:50px 0;
}

.benefit-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    padding:35px;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.benefit-card i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f7f1e5;
    color:#d6b16d;
    font-size:24px;
    margin-bottom:20px;
}

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


/* =========================
IMAGEN INTERMEDIA
========================= */

.blog-image{
    margin:60px 0;
}

.blog-image img{
    width:100%;
    border-radius:20px;
    display:block;
}


/* =========================
FAQ
========================= */

.faq-section{
    margin-top:70px;
}

.faq-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    padding:30px;
    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:15px;
    color:#05224c;
}

.faq-item p{
    margin-bottom:0;
}


/* =========================
CTA FINAL
========================= */

.implant-cta{
    background:#05224c;
    color:#fff;
    padding:80px 0;
    display:none;
}

.cta-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
}

.implant-cta span{
    color:#d6b16d;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
}

.implant-cta h2{
    color:#fff;
    margin:15px 0;
    font-size:42px;
}

.implant-cta p{
    color:rgba(255,255,255,.8);
}

.implant-btn{
    background:#fff;
    color:#05224c;
    text-decoration:none;
    font-weight:700;
    padding:18px 35px;
    border-radius:10px;
    display:inline-block;
}

.implant-btn:hover{
    background:#d6b16d;
    color:#05224c;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .blog-hero{
        padding:60px 0;
    }

    .blog-hero h1{
        font-size:38px;
    }

    .blog-excerpt{
        font-size:18px;
    }

    .blog-content h2{
        font-size:30px;
    }

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

    .blog-highlight{
        flex-direction:column;
    }

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

    .implant-cta h2{
        font-size:32px;
    }

}


.blog-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.blog-gallery img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.10);
    transition:.3s;
}

.blog-gallery img:hover{
    transform:scale(1.03);
}

@media(max-width:768px){

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

    .blog-gallery img{
        height:auto;
    }

}



/*TARJETAS LINKS HOME*/
.service-card-link{
    display:block;
    color:inherit;
    text-decoration:none;
    height:100%;
}

.service-card{
    cursor:pointer;
}

.service-card:hover .service-link{
    text-decoration:underline;
}

/*AJUSTES DESCUADRES*/

@media(max-width:768px){

    .bichectomia-hero{
        overflow:hidden;
    }

    .bichectomia-hero-grid{
        grid-template-columns:1fr;
        max-width:100%;
    }

    .bichectomia-hero-content{
        width:100%;
        max-width:100%;
        overflow:hidden;
    }

    .bichectomia-points{
        grid-template-columns:1fr 1fr;
        gap:18px;
    }

    .bichectomia-actions{
        width:100%;
    }

    .bichectomia-btn{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        justify-content:center;
        text-align:center;
        padding:18px 20px;
    }

    .doctor-trust{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }


    .implant-hero h1 {
        font-size: 52px;
    }

}


.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:inherit;
}

.logo:hover{
    opacity:.9;
}

.logo-text{
    color:#05224c;
    font-weight:700;
    line-height:1.1;
}