/* web/css/style.css */
:root {
    --primary: #0066FF; /* Tu azul */
    --dark: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 0px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    min-height: 35vh;
}

/* Animación flotante para la imagen del hero */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating-anim {
    animation: float 4s ease-in-out infinite;
}

/* Icon Boxes */
.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.card:hover .icon-box {
    transform: scale(1.1);
}

/* Botones */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: #0052cc;
    border-color: #0052cc;
}

/* Pricing */
.card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

/* Responsive text fixes */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    .hero-section .d-flex {
        justify-content: center;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Añadir al final de style.css */

/* Asegura que el video respete los bordes redondeados del contenedor */
.ratio video {
    border-radius: inherit; 
}

/* Asegura que la animación flotante se aplique al contenedor del video */
.floating-anim {
    animation: float 4s ease-in-out infinite;
}


/* Añadir al final de web/css/style.css */

.section-contacto .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.section-contacto .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

/* Estilos Sección Interactiva */
.step-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.step-item:hover {
    background-color: #f8f9fa;
}
.step-item.active {
    background-color: #f0f7ff; /* Azul muy clarito */
    border: 1px solid #cce5ff;
}
.step-item.active .step-icon {
    background-color: #0066FF !important; /* Tu azul */
    color: white !important;
    border: none !important;
}

.cursor-pointer { cursor: pointer; }

/* Animación de imagen */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0.5; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}