/* General */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}


/* Navbar */
.navbar {
    font-weight: bold;
    background-color: #ffffff;
}

.navbar-brand {
    color: #5cb85c; /* Verde pastel del logo */
    font-size: 1.5rem;
}

.nav-link {
    color: #5cb85c !important;
}

.nav-link:hover {
    color: #4cae4c !important;
}

/* Hero Section */

.herotexto{
    
z-index: 1;    
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
    );
    z-index: 1;
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-section p {
    font-size: 1.25rem;
    margin-top: 1rem;
    z-index: 2;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .btn {
    z-index: 2;
    font-size: 1.2rem;
    background-color: #5cb85c;
    border: none;
    color: #ffffff;
}

.hero-section .btn:hover {
    background-color: #4cae4c;
}

/* Open Enrollment */
#open-enrollment {
    background-color: #f9f9f9;
    color: #333333;
}

#open-enrollment h2 {
    color: #5cb85c;
}

/* Servicios */
#servicios .card {
    background-color: #ffffff;
    border-radius: 10px;
}

#servicios .card-title {
    color: #5cb85c;
}

#servicios .card-body i {
    color: #5cb85c;
}

/* Testimonios */
#testimonios {
    background-color: #f4f9f4; /* Fondo suave */
}

#testimonios h2 {
    color: #5cb85c; /* Verde pastel */
    font-size: 2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.custom-blockquote {
    background: rgba(92, 184, 92, 0.1); /* Fondo suave verde */
    border-left: 4px solid #5cb85c; /* Borde verde pastel */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #555;
    transition: all 0.3s ease;
}

.custom-blockquote p {
    font-size: 1.125rem; /* Aumentar tamaño de fuente */
}

.custom-blockquote footer {
    font-weight: bold;
    color: #5cb85c; /* Verde pastel */
    font-size: 1rem;
}

/* Botones del Carrusel */
.custom-control {
    background-color: rgba(92, 184, 92, 0.2);
    border-radius: 50%;
    padding: 12px;
}

.custom-control:hover {
    background-color: #5cb85c;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Transiciones suaves en los testimonios */
.carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-inner {
    padding: 0 15px;
}

/* Efecto Hover sobre el Testimonio */
.custom-blockquote:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}


/* Footer */
footer {
    background-color: #333333;
    color: #ffffff;
}

footer a {
    color: #5cb85c;
}

footer a:hover {
    color: #4cae4c;
}
