/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Encabezado */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #0d2538;
    color: white;
}

header .logo img {
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f1c40f;
}

/* Hero */
.hero {
    text-align: center;
    padding: 70px 20px;
    background: url('imagenes/img1.png') no-repeat center center/cover;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #f1c40f;
    padding: 12px 25px;
    color: #0d2538;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover {
    background: #e67e22;
}

/* Secciones */
.info, .services, .contact {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #0d2538;
}

/* Servicios */
.services {
    background: linear-gradient(135deg,#0d2538,#f3f7fa);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background:#fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

/* Contacto */
.contact a {
    background: linear-gradient(135deg, #f9f9f9, #0d2538);
    display: inline-block;
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d2538;
    color: white;
}
/* Sección Nosotros */
.about {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(125deg,#f8f8f8 ,#eef2f7);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0d2538;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-card {
    background: #f8f7f7;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
}

.about-card h3 {
    color: #e67e22;
    margin-bottom: 15px;
}

.about-card p, .about-card ul {
    color: #555;
    line-height: 1.5;
}

.about-card ul {
    padding-left: 20px;
}

.about-card ul li {
    margin-bottom: 8px;
    list-style: "✔ ";
    color: #0d2538;
}

