/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #004a7c;
    color: #fff;
    padding: 10px 0;
}

header .logo h1 {
    text-align: center;
    font-size: 2rem;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Banner con imagen de fondo y overlay */
.banner {
    position: relative;
    background-image: url('img/contable1.jpg'); /* Cambia esto por tu imagen */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Fondo negro translúcido */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff9900;
    padding: 15px 25px;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e68900;
}

/* Servicios */
#servicios {
    background-color: #fff;
    padding: 50px 20px;
}

#servicios h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Eliminado: .services-list (ya no se usa Bootstrap Grid lo reemplaza) */

/* Estilo individual de cada servicio */
.service-item {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Sobre Nosotros */
#nosotros {
    background-color: #f4f4f4;
    padding: 50px 20px;
}

#nosotros h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

#nosotros p {
    text-align: center;
    font-size: 1.1rem;
}

/* Contacto */
#contacto {
    background-color: #fff;
    padding: 50px 20px;
}

#contacto h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    background-color: #ff9900;
    padding: 15px 25px;
    font-size: 1.2rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #e68900;
}

/* Footer */
footer {
    background-color: #004a7c;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer .social-links li {
    margin: 0 15px;
}

footer .social-links li a {
    color: #fff;
    text-decoration: none;
}

footer .social-links li a:hover {
    text-decoration: underline;
}
