/* Paleta de colores basada en la imagen */
:root {
    --navy: #0e1b29;
    --red: #e30613;
    --light-grey: #f8f9fa;
    --border-grey: #dddddd;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-grey);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img { height: 60px; }
.logo-area span { font-weight: bold; font-size: 1.1rem; }

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { text-decoration: none; color: #333; font-size: 0.9rem; font-weight: bold; }
nav ul li a.active { color: var(--red); border-bottom: 2px solid var(--red); }

/* Título Principal */
.main-title {
    background-color: var(--light-grey);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-grey);
}

.main-title h1 { font-size: 1.8rem; margin: 0; }

/* Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Acento Rojo en Títulos */
.red-accent {
    position: relative;
    padding-left: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.red-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--red);
}

/* Columnas */
.section-block { margin-bottom: 40px; }
.mt-10 { margin-top: 10px; }
img { max-width: 100%; height: auto; }

.service-item {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.service-item img { width: 40%; border-radius: 4px; }

/* Sidebar Derecha */
.clients-section { text-align: center; }
.client-logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.client img { height: 50px; object-fit: contain; }
.client p { font-size: 0.8rem; margin-top: 10px; }

/* Sección Oscura */
.info-dark {
    background-color: var(--navy);
    color: white;
    padding: 30px;
    margin-top: 20px;
}

.info-dark h2 { color: white; margin-top: 30px; }

/* Formulario */
.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-box input, .contact-box textarea {
    padding: 10px;
    border: none;
    border-radius: 3px;
}

.contact-box button {
    background-color: var(--red);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 40px 0 20px;
    border-top: 5px solid var(--navy);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons { font-size: 1.5rem; display: flex; gap: 15px; }
.copyright { text-align: center; font-size: 0.8rem; margin-top: 20px; border-top: 1px solid #ccc; padding-top: 10px; }