/* Estilo global */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5; /* Gris claro */
    color: #333333; /* Gris oscuro */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #000000; /* Negro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: bold;
    color: #ff0000 !important; /* Rojo */
    font-size: 1.5rem;
}

.nav-link {
    color: #ffffff !important; /* Blanco */
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff0000 !important; /* Rojo */
}

/* Sección Hero */
.hero-section {
    background-color: #ffffff; /* Blanco */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333; /* Gris oscuro */
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff0000; /* Rojo */
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #555555; /* Gris medio */
}

.hero-section .btn {
    background-color: #ff0000; /* Rojo */
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    color: #ffffff; /* Blanco */
    transition: background-color 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #cc0000; /* Rojo oscuro */
}

/* Sección Sobre Nosotros */
#about {
    padding: 60px 0;
    background-color: #ffffff; /* Blanco */
}

#about h2 {
    color: #ff0000; /* Rojo */
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

#about p {
    font-size: 1.1rem;
    color: #333333; /* Gris oscuro */
    text-align: center;
}

/* Carrusel de imágenes */
.carousel-item img {
    object-fit: cover;
    height: 500px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000; /* Rojo */
}

/* Sección Servicios */
#services {
    background-color: #f8f8f8; /* Gris claro */
    padding: 60px 0;
}

#services h2 {
    color: #ff0000; /* Rojo */
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

#services .col-md-4 {
    margin-bottom: 30px;
    background-color: #ffffff; /* Blanco */
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .col-md-4 h4 {
    color: #ff0000; /* Rojo */
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#services p {
    font-size: 1rem;
    color: #555555;
}

#services .col-md-4:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Sección Contacto */
#contact {
    padding: 60px 0;
    background-color: #ffffff; /* Blanco */
}

#contact h2 {
    color: #ff0000; /* Rojo */
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

#contact .col-md-4 h4 {
    color: #ff0000; /* Rojo */
    font-size: 1.3rem;
}

#contact .col-md-4 p a {
    font-size: 1.1rem;
    color: #000000; /* Negro */
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact .col-md-4 p a:hover {
    color: #ff0000; /* Rojo */
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #000000; /* Negro */
    color: #ffffff; /* Blanco */
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ff0000; /* Rojo */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    #about h2,
    #services h2,
    #contact h2 {
        font-size: 2rem;
    }
}
