/* ===== RESET MODERNO ===== */
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0f172a;
}

/* ===== NAVBAR ===== */
.menu-area {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    transition: 0.3s;
}

.navbar-nav li a {
    font-weight: 500 !important;
    color: #0f172a !important;
}

.navbar-nav li a:hover {
    color: #1F6F63!important;
}

/* ===== HERO (TRANSFORMAR SLIDER) ===== */
.carousel-inner .item {
    height: 100vh !important;
    position: relative;
}

.carousel-inner .item::after {
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background: linear-gradient(180deg,rgba(255,255,255,0.1),rgba(255,255,255,0.95));
    top:0;
    left:0;
}

.caption {
    position: relative;
    z-index: 2;
    max-width: 650px;
    top: 35%;
    margin-left: 8%;
    text-align: left;
}

.caption p {
    font-size: 54px !important;
    font-weight: 600;
    color: #020617 !important;
}

/* ===== BOTONES ===== */
.btn, .read-more {
    background: #1F6F63!important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 14px 26px !important;
    border: none !important;
    transition: 0.3s;
}

.btn:hover {
    background: #2563eb !important;
    transform: translateY(-2px);
}

/* ===== SECCIONES ===== */
.section-big {
    padding: 120px 0 !important;
}

/* ===== TITULOS ===== */
.section-title h2 {
    font-size: 40px !important;
    font-weight: 600;
}

/* ===== CARDS ===== */
.single-news,
.panel,
.about-text {
    background: #ffffff;
    border-radius: 16px !important;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.single-news:hover {
    transform: translateY(-6px);
}

/* ===== IMÁGENES ===== */
img {
    border-radius: 14px;
}

/* ===== MODALS ===== */
.modal-content {
    border-radius: 20px !important;
    padding: 30px;
}

/* ===== ACORDEON ===== */
.panel {
    border: none !important;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #020617 !important;
}


/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    color: white;
    z-index: 999;
}

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

.caption {
    margin-left: 5%;
    top: 30%;
}

.caption p {
    font-size: 28px !important;
}

.section-title h2 {
    font-size: 28px !important;
}

}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

a:hover,
.button:hover,

.btn:hover {
    background-color: #f3f4f6 !important;
}



/* HERO ULTRA */
.hero-ultra {
    height: 100vh;
    display: flex;
    align-items: left;
    position: relative;
    padding-left: 10%;
    background: linear-gradient(120deg,#f8fafc,#ffffff);
    z-index: 10;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
  
    margin-bottom: 30px;
}

/* ANIMACIONES */
.hero-content {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity:0;
        transform: translateY(40px);
    }
    to {
        opacity:1;
        transform: translateY(0);
    }
}

/* BOTÓN PREMIUM */
.btn {
    box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}

/* HOVER CARDS PRO */
.single-news:hover {
    transform: translateY(-8px) scale(1.02);
}

/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}

/* NAVBAR SCROLL EFFECT */
.menu-area {
    transition: all 0.3s;
}

.menu-area.scrolled {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.hero-content h1 {
    font-size: 34px;
}

.hero-ultra {
    padding: 0 20px;
}

}



/* ===== HERO CLINIC FIXED ===== */

.hero-clinic {
    position: relative;
    height: 100vh;
    background-image: url('assets/img/imagen-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://patriciaschimchak.com.uy/assets/img/imagen-hero.jpg') center center / cover no-repeat;
}

/* CONTENIDO (ALINEADO IZQUIERDA REAL) */
.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    margin-left: 100px; /* CLAVE */
}

/* TAG */
.hero-tag {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* TITULO */
.hero-clinic h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-clinic h1 span {
    font-weight: 300;
}

/* TEXTO */
.hero-desc {
    font-size: 18px;
    margin: 20px 0 30px;
    color: #e5e7eb;
}

/* BOTONES */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* BOTON VERDE EXACTO */
.btn-primary {
    background: #1F6F63;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* BOTON SECUNDARIO */
.btn-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

/* UBICACIÓN */
.hero-location {
    font-size: 14px;
    color: #d1d5db;
}

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

.hero-content {
    margin-left: 20px;
}

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

.hero-buttons {
    flex-direction: column;
}

}






.btn-green {
    background: #1F6F63;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}






.about-lovable {
    padding: 120px 0;
    background: #f3f4f6;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
}

.about-content {
    max-width: 700px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
.about-grid {
    flex-direction: column;
    text-align: center;
}
}


/* ===== CONSULTORIO LOVABLE ===== */

.consultorio-lovable {
    padding: 120px 0;
    background: #f3f4f6;
}

.consultorio-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* TEXTO */
.consultorio-content {
    max-width: 600px;
}

.consultorio-tag {
    color: #1F6F63;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.consultorio-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.consultorio-content h2 span {
    font-style: italic;
}

/* PARRAFOS */
.consultorio-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* DESTACADO FINAL */
.consultorio-highlight {
    font-weight: 600;
    color: #111827;
    margin-top: 20px;
}

/* IMAGEN */
.consultorio-image img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
}

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

.consultorio-grid {
    flex-direction: column-reverse;
    text-align: center;
}

.consultorio-image img {
    width: 280px;
    height: 280px;
}

}


/* ===== ACCORDION LOVABLE ===== */

.panel {
    background: #f9fafb !important;
    border-radius: 16px !important;
    border: 1px solid #e5e7eb !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    overflow: hidden;
}

/* HEADER */
.panel-heading {
    background: transparent !important;
    border: none !important;
    padding: 20px 25px !important;
}

/* TITULO */
.panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #1f2937 !important;
    text-decoration: none;
}

/* ICONO + */
.panel-title a:after {
    content: "+";
    font-size: 22px;
    color: #6b7280;
    transition: 0.3s;
}

/* ABIERTO */
.panel-title a[aria-expanded="true"]:after {
    content: "-";
}

/* BODY */
.panel-body {
    background: #ffffff;
    padding: 20px 25px !important;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

/* HOVER */
.panel:hover {
    transform: translateY(-2px);
    transition: 0.3s;
}

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

.panel-title a {
    font-size: 16px;
}

}

.panel-title a:after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: 0.3s;
}

.panel-title a[aria-expanded="true"]:after {
    transform: rotate(-135deg);
}


.panel-title a:after {
    content: "▾";
    font-size: 18px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

#contacto strong {
    color:#1f2937;
}

#contacto h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
}
}


.faq-item {
    background:#fff;
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
    width:100%;
    padding:18px 20px;
    background:none;
    border:none;
    text-align:left;
    font-size:16px;
    font-weight:600;
    font-family:'Inter', sans-serif;
    cursor:pointer;
    position:relative;
}

.faq-question:focus {
    outline:none;
}

.faq-question::after {
    content:"+";
    position:absolute;
    right:20px;
    font-size:18px;
}

.faq-item.active .faq-question::after {
    content:"–";
}

.faq-answer {
    display:none;
    padding:20px;
    font-size:14px;
    color:#4b5563;
}

.faq-item.active .faq-answer {
    display:block;
}

.pro-card {
    flex:1;
    min-width:260px;
    max-width:320px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:50px 20px;
    text-align:center;
    text-decoration:none;
    transition:all 0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ICONO EN BURBUJA */
.icon-wrap {
    width:70px;
    height:70px;
    border-radius:50%;
    background:#e6f4f1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border:2px solid #d1ebe5;
}

.icon-wrap i {
    font-size:26px;
    color:#1f7a6c;
}

/* TEXTO */
.pro-card h3 {
    font-family:'Inter', sans-serif;
    font-size:20px;
    color:#111827;
    margin:0;
}

/* HOVER PRO */
.pro-card:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    border-color:#d1d5db;
}

.pro-card:hover .icon-wrap {
    background:#1f7a6c;
    border-color:#1f7a6c;
}

.pro-card:hover .icon-wrap i {
    color:#fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section a {
    animation: fadeUp 0.6s ease forwards;
}

a[style]:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


.nav-link {
    font-family:'Inter', sans-serif;
    font-size:15px;
    color:#6b7280;
    text-decoration:none;
    transition:0.2s;
}

.nav-link:hover {
    color:#111827;
}

/* BOTÓN */
.btn-whatsapp {
    background:#1f7a6c;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:0.3s;
}

.btn-whatsapp:hover {
    background:#166e5d;
    transform:translateY(-2px);
}


.nav-link {
    transition: 0.2s;
}

.nav-link:hover {
    background: transparent !important;
    color: #1f7a6c !important;
}




#consejos h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    text-transform: none !important;
    letter-spacing: 0;
}


footer a,
footer a:hover,
footer a:focus,
footer a:active {
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.main-header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    position:relative;
}

.logo{
    font-family:'Inter', sans-serif;
    font-size:20px;
    font-weight:600;
    color:#111827;
}

.logo span{
    color:#1f7a6c;
}

/* NAV DESKTOP */
#main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

#main-nav a{
    color:#374151;
    text-decoration:none;
    font-size:14px;
    font-family:'Inter', sans-serif;
}

#main-nav a:hover{
    color:#1f7a6c;
}

/* BOTON */
.btn-whatsapp{
    background:#1f7a6c;
    color:#fff !important;
    padding:10px 16px;
    border-radius:10px;
}

/* HAMBURGER */
#menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

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

    #menu-toggle{
        display:block;
    }

    #main-nav{
        position:absolute;
        top:65px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        display:none;
        border-bottom:1px solid #e5e7eb;
    }

    #main-nav.active{
        display:flex;
    }
}


#main-nav a:hover,
#main-nav a:focus,
#main-nav a:active {
    background: transparent !important;
    color: #1f7a6c !important;
    text-decoration: none !important;
}

/* BOTON VERDE */
.btn-hero-primary {
    background:#1f7a6c;
    color:#fff;
    border-radius:12px;
    padding:14px 22px;
    text-decoration:none;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all 0.25s ease;
    border:none;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus,
.btn-hero-primary:active {
    background:#166e5d !important;
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


/* BOTON OUTLINE */
.btn-hero-outline {
    background:transparent;
    color:#1f7a6c;
    border:1px solid #1f7a6c;
    border-radius:12px;
    padding:14px 22px;
    text-decoration:none;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all 0.25s ease;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus,
.btn-hero-outline:active {
    background:#1f7a6c !important;
    color:#fff !important;
    border-color:#1f7a6c !important;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}