﻿.navbar-custom-inicio {
    transition: all 0.3s ease;
}

    .navbar-custom-inicio.scrolled {
        background-color: var(--primary) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }


.vavbarItemActive {
    color: var(--light);
}
.vavbarItem {
    color: var(--accent);
}
.hero-section-inicio {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    min-height: 80vh;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    padding-top: 80px;
    color: white;
}

.btn-hero {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.gap {
  height:14vh;

}
/* Sobre Nosotros Cards */
.mission-card, .vision-card {
    border-radius: 15px;
    transition: all 0.4s ease;
    background-color: white;
    overflow: hidden;
    position: relative;
}

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--accent);
    }

    .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--secondary);
    }

.icon-container {
    background-color: rgba(152, 210, 192, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/*Estilos suscripciones*/
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    font-family: 'Arial', sans-serif;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 1rem 1.5rem;
    height: auto;
}

.newsletter-form .btn-hero {
    border-radius: 0 50px 50px 0;
    padding: 0 2rem;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

    .newsletter-form .btn-hero:hover {
        background-color: var(--light);
        transform: translateY(-2px);
    }



/* Estilos para validación */
.is-valid {
    border-color: var(--accent) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2398D2C0' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Estilo para el botón de eliminar */
.btn-outline-light:hover {
    color: var(--primary) !important;
    background-color: var(--light);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*modals*/




.countdown {
    color: var(--secondary);
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
}
.modal-anulacion .anulacion-content {
    background-color: #fff;
    border: 2px solid #dc3545;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
}



.anulacion-icon {
    margin-bottom: 15px;
}

.anulacion-title {
    color: #dc3545;
    font-weight: bold;
}

.anulacion-text {
    color: #333;
}

.btn-anulacion {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

    .btn-anulacion:hover {
        background-color: #c82333;
    }


a:hover {
    color: var(--accent) !important;
}