/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos del header */
.site-header {
    background-color: #005f73;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.5s, padding 0.5s;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 70px;
    transition: height 0.5s;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.nav-link {
    color: white !important;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding: 10px 15px;
}

.nav-link:hover,
.nav-link:focus {
    color: #ff6347 !important;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #ff6347;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
    background: #ff6347;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #005f73;
    }

    .navbar-collapse .nav-link {
        color: white;
        padding: 10px 15px;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        color: #ffdd57;
    }
}

.hero {
    background-image: url('fondo.jfif');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content h1 {
    color: white;
    text-shadow: 4px 4px 20px rgba(10, 10, 10, 10); /* Sombra más oscura */
    font-weight: bold;
}

.hero-content p {
    color: white;
    text-shadow: 4px 4px 20px rgba(10, 10, 10, 10); /* Sombra más oscura */
    font-size: 1.40em; 
    font-weight: bold;
}

.hero .cta-button {
    background-color: #ee6c4d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.hero .cta-button:hover {
    background-color: #d64531;
    transform: scale(1.1);
}

section {
    padding: 60px 0;
}

section h2, section h3 {
    margin-bottom: 20px;
}

section p {
    margin-bottom: 20px;
}

footer {
    background-color: #001219;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

footer .social-media a:hover {
    color: #ffdd57;
}

/* Estilos específicos para secciones */
#servicios {
    background-color: #f0f8ff; /* Fondo suave */
}

#servicios h2 {
    color: #ff6347; /* Título llamativo */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

#servicios h3 {
    color: #333; /* Títulos en negro */
    font-size: 1.5rem;
    font-weight: bold;
}

#servicios p {
    color: #555; /* Texto en gris oscuro */
}

#servicios img {
    width: 50px;
    margin-bottom: 10px;
}

#servicios .col-md-3 {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0; /* Bordes sutiles */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombras suaves */
    border-radius: 8px; /* Bordes redondeados */
    background-color: #fff; /* Fondo blanco para las columnas */
}

#vision-mision {
    background-color: #e6f7ff; /* Fondo suave */
}

#vision-mision h2,
#proyectos h2,
#testimonios h2,
#contacto h2 {
    color: #ff6347; /* Título llamativo */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

#vision-mision h3,
#proyectos h3,
#testimonios h4 {
    color: #333; /* Títulos en negro */
    font-size: 1.5rem;
    font-weight: bold;
}

#vision-mision p,
#proyectos p,
#testimonios p,
#contacto p {
    color: #555; /* Texto en gris oscuro */
}

#proyectos a {
    color: #ff6347; /* Enlaces llamativos */
    font-weight: bold;
}

#contacto .form-control {
    border: 1px solid #ff6347; /* Borde en color llamativo */
}

#contacto .btn-primary {
    background-color: #ff6347; /* Botón llamativo */
    border: none;
}

#contacto .informacion-contacto p {
    color: #333; /* Texto en negro */
}
