/* GENERAL */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* LOGO ARRIBA */
.top-header {
    background: white;
    padding: 20px 30px;
}

.logo-top {
    width: 140px;
    height: auto;
}

/* LÍNEAS DIVISORIAS */
.divider {
    width: 100%;
    height: 3px;
    background: #F57C00;
}

/* HERO OSCURO TÉCNICO */
.hero {
    background: 
        linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 10px,
            rgba(0,0,0,0.05) 10px,
            rgba(0,0,0,0.05) 20px
        );
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-top: 3px solid #F57C00;
    border-bottom: 3px solid #F57C00;
}

.hero-sub {
    max-width: 700px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
    color: #e6e6e6;
}

.btn {
    background: #F57C00;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px; /* separa el botón del texto */
}


/* BLOQUE DESTACADO */
.highlight {
    background: #e8e8e8;
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

.highlight h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.highlight p {
    font-size: 18px;
    color: #555;
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SECCIONES */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

/* SERVICIOS */
.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    border-left: 5px solid #F57C00;
}

/* CONTACTO */
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.form input, .form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
