/* assets/css/styles.css */
:root {
    --mint-green: #3EB489;
    --mint-light: #E8F6F1;
    --mint-dark: #2A8C68;
    --silver: #B0BEC5;
    --silver-light: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
}

body { font-family: 'Inter', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* Utilidades generales */
.bg-mint { background-color: var(--mint-green) !important; color: var(--white); }
.text-mint { color: var(--mint-green) !important; }
.bg-mint-light { background-color: var(--mint-light) !important; }
.bg-silver { background-color: var(--silver) !important; color: var(--white); }
.bg-light-silver { background-color: var(--silver-light) !important; }
.tracking-wide { letter-spacing: 1px; font-weight: 500; }
.max-w-700 { max-width: 700px; }

/* Botones */
.btn-mint { background-color: var(--mint-green); color: var(--white); border: none; transition: all 0.3s ease; }
.btn-mint:hover { background-color: var(--mint-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 15px rgba(62, 180, 137, 0.4); }

/* Hero Section Responsivo */
.hero-section { background: linear-gradient(135deg, var(--white) 40%, var(--mint-light) 100%); min-height: 85vh; }
.circle-bg-large { width: 450px; height: 450px; z-index: 0; }
.circle-bg-small { width: 350px; height: 350px; z-index: 0; }
.hero-icon-container { width: 300px; height: 300px; z-index: 1; border: 10px solid white; }
.floating-badge { bottom: 20px; right: -40px; z-index: 2; }

@media (max-width: 768px) {
    .circle-bg-large { width: 300px; height: 300px; }
    .circle-bg-small { width: 250px; height: 250px; }
    .hero-icon-container { width: 200px; height: 200px; }
    .hero-icon-container i { font-size: 5rem; }
    .floating-badge { right: -10px; bottom: 0px; }
}

/* Animaciones Flotantes */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.floating-element { animation: float 4s ease-in-out infinite; }

/* Tarjetas de servicios */
.service-card { background: var(--white); border: 1px solid var(--silver-light); border-radius: 16px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; z-index: 1; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--mint-light); transition: all 0.4s ease; z-index: -1; }
.service-card:hover { transform: translateY(-10px); border-color: var(--mint-green); box-shadow: 0 15px 30px rgba(62, 180, 137, 0.15); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 3rem; color: var(--silver); transition: all 0.4s ease; }
.service-card:hover .service-icon { color: var(--mint-green); transform: scale(1.1); }

/* Estilos inyectados desde navbar.html */
.navbar-custom { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.05); border-bottom: 3px solid var(--mint-green); transition: all 0.3s ease; }
.navbar-custom .nav-link { color: var(--text-dark); font-weight: 500; position: relative; }
.navbar-custom .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--mint-green); transition: width 0.3s ease; }
.navbar-custom .nav-link:hover::after { width: 100%; }



:root {
    --mint: #3EB489; /* Verde menta más elegante */
    --mint-light: #e8f6f1;
    --dark: #2c3e50;
    --silver-soft: #f8f9fa;
}

/* NAVBAR BASE */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* LOGO */
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(62, 180, 137, 0.2);
}

.brand-title {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* LINKS - QUITANDO EFECTO LÍNEA */
.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 50px; /* Efecto pastilla */
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

/* HOVER Y ACTIVE TIPO "PILL" */
.nav-link:hover, 
.nav-link.active {
    color: var(--mint) !important;
    background-color: var(--mint-light);
}

/* DROPDOWN */
.dropdown-custom {
    border-radius: 15px;
    padding: 8px;
    margin-top: 10px;
    animation: fadeInSlide 0.3s ease forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.2s;
}

.dropdown-item i {
    width: 20px;
    color: var(--mint);
}

.dropdown-item:hover {
    background: var(--mint-light);
    color: var(--mint);
    transform: translateX(5px);
}

/* BOTON AGENDAR */
.btn-mint {
    background: var(--mint);
    border: none;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-mint:hover {
    background: #349a75;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(62, 180, 137, 0.3);
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .dropdown-menu {
        background: var(--silver-soft);
        margin-top: 5px;
    }
}