body {
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa');
    background-size: cover;
    background-position: center;
}

/* Navbar fondo blanco + línea azul */
.custom-navbar {
    background-color: #FFFFFF;
    border-bottom: 3px solid #1E4A7A;
}

/* Links del menú */
.custom-link {
    color: #1E4A7A !important;
    font-weight: 500;
    transition: 0.3s;
}

.custom-link:hover {
    color: #0D2B4C !important;
    /* azul más oscuro */
}

/* Botón principal */
.custom-btn {
    background-color: #1E4A7A;
    color: #FFFFFF !important;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.custom-btn:hover {
    background-color: #0D2B4C;
}

/* Ícono hamburguesa visible en fondo blanco */
.navbar-toggler {
    border-color: #1E4A7A;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(0);
    /* lo vuelve oscuro */
}

/* Asegura que el logo quede pegado a la izquierda */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo más alineado */
.navbar-brand {
    margin-right: auto;
    padding-left: 0;
}

.logo-navbar {
    height: 140px;
    width: 300px;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .logo-navbar {
        height: 140px;
    }
}

/* Fondo suave */
.beneficios {
    background-color: #F4F4F4;
}

/* Título principal */
.titulo-seccion {
    color: #1E4A7A;
}

/* Subtítulo */
.subtitulo {
    color: #6c757d;
    font-size: 18px;
}

/* Tarjetas */
.beneficio-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    transition: 0.3s;
    border-top: 4px solid #1E4A7A;
}

/* Hover elegante */
.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Íconos */
.icono i {
    font-size: 40px;
    color: #E67E22;
}

/* Texto */
.beneficio-card h5 {
    color: #1E4A7A;
}

.beneficio-card p {
    color: #555;
}

/* HERO fondo limpio */
.hero {
    background-color: #F4F4F4;
    min-height: 90vh;
    padding-top: 100px;
}

/* Título principal */
.hero-title {
    color: #F4F4F4;
    font-size: 42px;
    font-weight: 700;
}

/* Subtítulo */
.hero-subtitle {
    color: #F4F4F4;
    font-size: 20px;
}

/* Botón principal (naranja) */
.hero-btn {
    background-color: #E67E22;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover botón */
.hero-btn:hover {
    background-color: #cf6d1c;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* Sección fondo (puedes cambiar imagen si quieres) */
.video-section {
    position: relative;
    background: url('img/fondo.jpg') center/cover no-repeat;
    padding: 70px 0;
    /* menos alto que antes */
}

.overlay {
    background: rgba(13, 43, 76, 0.85);
    padding: 40px 0;
    /* reduce altura total */
}

/* Contenedor de video más grande */
.video-wrapper {
    max-width: 700px;
    /* antes 900px */
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Altura controlada */
.video-wrapper video {
    width: 100%;
    max-height: 400px;
    /* clave para que no sea gigante */
    object-fit: cover;
}

/* Botón naranja */
.video-btn {
    background-color: #E67E22;
    color: #FFFFFF;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.video-btn:hover {
    background-color: #cf6d1c;
    transform: scale(1.05);
}

.texto-naranja {
    color: #E67E22;
}

.agenda-section ul li {
    color: #333;
    font-weight: 500;
}

.agenda-section ul li::marker {
    color: #E67E22;
}

.check {
    color: #E67E22;
    font-weight: bold;
    margin-right: 5px;
}

/* CARDS */
.custom-card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
}

.custom-card:hover {
    transform: translateY(-10px);
}

/* FORM */
.form-box {
    background: #1a1a1a;
    border-radius: 10px;
}

/* BOTÓN */
.btn-primary {
    background-color: #E67E22;
    border: none;
}

/* SECCIÓN BENEFICIOS */
.beneficios {
    background: #f8f9fa;
}

/* TARJETAS */
.beneficio-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ICONOS */
.icono {
    font-size: 40px;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.beneficio-card:hover .icono {
    background: #0d6efd;
    color: white;
}

/* SECCIÓN VIDEO FULL WIDTH */
.video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;

    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa') center/cover no-repeat;
}

/* OVERLAY OSCURO */
.video-section .overlay {
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    padding: 80px 20px;

    display: flex;
    align-items: center;
}

/* VIDEO */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* SECCIÓN TESTIMONIOS*/
.testimonios {
    background-color: #FFFFFF;
}

/* TÍTULO */
.titulo-testimonios {
    color: #E67E22;
}

/* SUBTÍTULO */
.subtitulo-testimonios {
    color: #777;
}

/* TARJETAS */
.testimonio-card {
    background-color: #FFF7F0;
    /* blanco con toque naranja suave */
    border-radius: 15px;
    border-left: 5px solid #E67E22;
    transition: 0.3s;
}

/* HOVER */
.testimonio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* IMAGEN */
.testimonio-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E67E22;
}

/* TEXTO */
.testimonio-card p {
    color: #444;
    font-size: 15px;
}

/* SECCIÓN AGENDA */
.agenda-section {
    background: #f8f9fa;
}

/* BOX CALENDLY */
.calendly-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FONDO */
.form-section {
    background: linear-gradient(135deg, #E67E22, #d19663);
}

/* CARD */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* INPUT GROUP */
.input-group-text {
    background: #E67E22;
    color: white;
    border: none;
}

/* INPUTS */
.form-control,
.form-select {
    border: none;
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
}

/* BOTÓN */
.btn-primary {
    background: linear-gradient(45deg, #E67E22, #c77833);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* LISTA BENEFICIOS */
.benefits-list i {
    color: #ffd43b;
    margin-right: 8px;
}

/* TEXTO */
.form-section p {
    font-size: 16px;
}

/* FOOTER BASE */
.footer-ultra {
    background-color: #FFFFFF;
    color: #1E4A7A;
    border-top: 4px solid #E67E22;
}

/* TÍTULOS */
.footer-ultra h4,
.footer-ultra h6 {
    color: #1E4A7A;
}

/* TEXTO */
.footer-ultra p,
.footer-ultra li {
    color: #555;
}

/* LINKS */
.footer-links a {
    color: #1E4A7A;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a i {
    margin-right: 6px;
}

/* HOVER LINKS */
.footer-links a:hover {
    color: #E67E22;
    transform: translateX(5px);
}

/* ICONOS REDES */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin-right: 10px;

    border-radius: 50%;
    background: rgba(30, 74, 122, 0.1);
    /* azul suave */
    color: #1E4A7A;

    font-size: 18px;
    transition: 0.3s;
}

/* HOVER REDES */
.social-icons a:hover {
    background: #E67E22;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* BADGES */
.badge.bg-primary {
    background-color: #1E4A7A !important;
}

.badge.bg-success {
    background-color: #E67E22 !important;
}

.badge.bg-warning {
    background-color: #F4F4F4 !important;
    color: #1E4A7A !important;
}

/* HR */
.footer-ultra hr {
    border-color: rgba(30, 74, 122, 0.2);
}

/* TEXTO FINAL */
.footer-ultra .small {
    color: #777;
}

/* LINKS BOTTOM */
.footer-ultra .small a {
    color: #1E4A7A;
    text-decoration: none;
}

.footer-ultra .small a:hover {
    color: #E67E22;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25d366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    text-decoration: none;
    z-index: 999;

    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

/* HOVER */
.whatsapp:hover {
    transform: scale(1.15);
    background: #1ebe5d;
}

/* ANIMACIÓN PULSO */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}