

.hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.logo-navbar {
  height: 50px;   /* más grande en PC */
  width: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
  .logo-navbar {
    height: 60px;
  }
}

/* Celular */
@media (max-width: 576px) {
  .logo-navbar {
    height: 50px;
  }
}


/* Ícono */
.icono {
    font-size: 40px;
    color: #0d6efd;
}

/* Título */
.servicio-card .card-title {
    color: #1a1a1a;
}

/* Texto */
.servicio-card .card-text {
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}


/* Fondo degradado moderno */
.body-login {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}


.card {
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Inputs */
input.form-control {
    border-radius: 10px;
    padding: 12px;
}

input.form-control:focus {
    border-color: #6610f2;
    box-shadow: 0 0 10px rgba(102,16,242,0.3);
}

/* Botón */
.btn-primary {
    background-color: #0d6efd;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: scale(1.03);
}

/* Iconos dentro de inputs */
.input-group-text {
    background-color: #e9ecef;
    border-radius: 10px 0 0 10px;
    border: 1px solid #ced4da;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.table th, .table td {
    white-space: nowrap !important;
}

.dropdown-menu:not(.show) {
    display: none !important;
}


:root{
    --primary-gold:#c5a059;
    --dark-navy:#0f172a;
    --soft-bg:#f5f7fb;
    --card-bg:#ffffff;
}

/* GENERAL */

body{
    background: var(--soft-bg);
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
}

/* HERO */

.hero{
    position: relative;

    width: 100%;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 0 180px;

    margin-top: -80px;

    color: white;

    overflow: hidden;

    background:
    linear-gradient(
        rgba(15,23,42,.72),
        rgba(15,23,42,.82)
    ),
    url("../img/fondo.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* EFECTO OSCURO */
.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(255,255,255,.08),
        transparent 60%
    );
}

/* CURVA ABAJO */
.hero::after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;

    width: 100%;
    height: 140px;

    background: #f8fafc;

    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px;
}

/* CONTENIDO */
.hero .container{
    position: relative;
    z-index: 2;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(255,255,255,.08),
        transparent 60%
    );
}

.hero .container{
    position: relative;
    z-index: 2;
}

.hero h1{
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;

    max-width: 1100px;
    margin: auto auto 25px;

    text-shadow:
        0 10px 25px rgba(0,0,0,.35);
}

.hero .lead{
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
}

/* BADGE */

.badge-hero{
    background: rgba(197,160,89,.15);
    color: #f8d48a;
    border: 1px solid rgba(197,160,89,.35);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .85rem;
    letter-spacing: 1px;
}

/* PILARES */

.pilar-item{
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
    padding: 35px;
    transition: .35s ease;
    height: 100%;
    backdrop-filter: blur(4px);
}

.pilar-item:hover{
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.1);
}

.pilar-icono{
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(197,160,89,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

/* TITULOS */

.section-title{
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.gold-line{
    width: 70px;
    height: 4px;
    background: var(--primary-gold);
    margin: auto;
    border-radius: 10px;
}

/* SERVICIOS */

#servicios{
    position: relative;
    background: #f8fafc;
    z-index: 5;
}

.servicio-card{
    background: var(--card-bg);
    border-radius: 28px !important;
    padding: 40px 30px;
    transition: .35s ease;
    border: 1px solid rgba(0,0,0,.03);
    box-shadow:
        0 10px 30px rgba(15,23,42,.04),
        0 2px 10px rgba(15,23,42,.02);
    overflow: hidden;
    position: relative;
}

.servicio-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: linear-gradient(to right, var(--primary-gold), #f1d18a);
}

.servicio-card:hover{
    transform: translateY(-12px);
    box-shadow:
        0 20px 45px rgba(15,23,42,.10),
        0 10px 20px rgba(15,23,42,.05);
}

.icono-circulo{
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #faf7f1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-gold);
    transition:.3s ease;
}

.servicio-card:hover .icono-circulo{
    transform: scale(1.1);
    background: rgba(197,160,89,.12);
}

.card-title{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.card-text{
    font-size: .96rem;
    line-height: 1.8;
    color: #64748b;
}

/* WHATSAPP */

.whatsapp-float{
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37,211,102,.35);
    z-index: 100;
    transition: .3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.12);
    color: white;
}

/* FOOTER */

footer{
    background: #0f172a;
}

footer h5{
    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero{
        padding: 100px 0;
    }

    .hero h1{
        font-size: 2.7rem;
    }

    .section-title{
        font-size: 2.2rem;
    }

}