/* 
   FUENTE PRINCIPAL
    */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000000;
    line-height: 1.7;
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: #60A5FF;
    transition: color 0.2s ease;
}
a:hover {
    color: #4A8FD9;
}

/* 
   UTILIDADES
  */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 400;
}

.badge-modern {
    background-color: #E3EEFF;
    color: #60A5FF;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* 
   NAVBAR
    */
.custom-navbar {
    background-color: #ffffff;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000000 !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #60A5FF;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(96, 165, 255, 0.3);
}

/* 
   HERO / BANNER - CÓDIGO REDUCIDO
    */

/* Estilos base necesarios */
.hero-section {
    background: linear-gradient(135deg, #60A5FF 0%, #4A8FD9 50%, #3A7BC2 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 700;
    font-size: 3.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(to right, #ffffff, #E3EEFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.btn-hero {
    background-color: #ffffff;
    color: #60A5FF;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: none;
    animation: fadeInUp 1.4s ease-out;
}

.btn-hero:hover {
    background-color: #f8fafc;
    color: #4A8FD9;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(96, 165, 255, 0.18);
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.4s ease;
    animation: fadeInUp 1.6s ease-out;
}

.hero-image:hover {
    transform: scale(1.03);
}

/* 
   ANIMACIONES
    */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
   RESPONSIVE DEL HERO
   */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        padding: 100px 0 70px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .btn-hero {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .hero-image {
        max-height: 220px;
        margin-top: 30px;
    }
}

/* 
   ABOUT (Nosotros)
    */
.list-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.list-benefits li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 400;
}

.list-benefits li i {
    font-size: 1.2rem;
    width: 24px;
    color: #60A5FF;
}

.card-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(96, 165, 255, 0.08);
}

.card-modern p {
    color: #000000;
    font-weight: 400;
}

.icon-circle {
    width: 52px;
    height: 52px;
    background: #E3EEFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FF;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.badge-value {
    background: #f1f5f9;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #000000;
    border: 1px solid #e2e8f0;
}

/* 
   SERVICIOS (Cards)
   */
.card-service {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-service:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(96, 165, 255, 0.12);
}

.card-service p {
    color: #000000;
    font-weight: 400;
}

.card-service small {
    color: #000000;
    font-weight: 400;
}

.card-service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-service:hover .card-service-img img {
    transform: scale(1.08);
}

.overlay-service {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(58, 123, 194, 0.9), transparent);
    color: white;
}

.overlay-service h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.card-service-body {
    padding: 28px;
}

.card-service-body p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}



/* 
   BOTONES DE SERVICIOS
   */
.btn-service {
    background: linear-gradient(135deg, #60A5FF, #4A8FD9);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(96, 165, 255, 0.25);
}

.btn-service:hover {
    background: linear-gradient(135deg, #4A8FD9, #3A7BC2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 165, 255, 0.35);
    text-decoration: none;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/*
   CONTACTO
    */
.contact-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

.contact-info-card h4 {
    font-size: 1rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h4 i {
    color: #60A5FF;
    width: 24px;
    font-size: 1.1rem;
}

.contact-info-card p {
    margin-bottom: 0;
    padding-left: 36px;
    color: #000000;
    font-weight: 400;
}

.contact-info-card hr {
    border-color: #e2e8f0;
    margin: 16px 0;
    opacity: 0.5;
}

.card-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.card-form h4 {
    color: #000000;
}

.form-control-modern {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #000000;
    background: rgba(255, 255, 255, 0.5);
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

.form-control-modern:focus {
    border-color: #60A5FF;
    box-shadow: 0 0 0 4px rgba(96, 165, 255, 0.12);
    background: #ffffff;
}

.btn-form {
    background: linear-gradient(135deg, #60A5FF, #4A8FD9);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(96, 165, 255, 0.3);
}

.btn-form:hover {
    background: linear-gradient(135deg, #4A8FD9, #3A7BC2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(96, 165, 255, 0.4);
}

/* 
   FOOTER 
    */
.footer-modern {
    background: linear-gradient(135deg, #60A5FF 0%, #4A8FD9 50%, #3A7BC2 100%);
    padding: 40px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

/* Efecto decorativo  */
.footer-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.footer-modern .container {
    position: relative;
    z-index: 2;
}


.footer-modern p,
.footer-modern .small,
.footer-modern .text-white {
    color: #ffffff !important;
    font-weight: 400;
}

/* 
   ANIMACIONES
    */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
   RESPONSIVE
    */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        padding: 100px 0 70px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 30px;
    }
    
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .btn-hero {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .hero-image {
        max-height: 220px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .card-service-img {
        height: 180px;
    }
    
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .navbar-nav .nav-link {
        padding: 8px 16px !important;
    }
    .logo-img {
        height: 50px;
    }
    .contact-info-card {
        border-left: none;
        border-top: 4px solid #60A5FF;
    }
}