/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; background: #fff; line-height: 1.6; }

/* Contenedor general */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { position: fixed; width: 100%; background: rgba(255, 255, 255, 0.95); box-shadow: 0 1px 4px rgba(0,0,0,0.1); z-index: 10; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.5rem; font-weight: 700; }
.menu { list-style: none; display: flex; }
.menu li { margin-left: 30px; }
.menu a { text-decoration: none; color: #333; font-weight: 600; transition: color 0.3s; }
.menu a:hover { color: #007aff; } /* Azul Apple */

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('https://via.placeholder.com/1920x1080?text=Hero+Background') center/cover no-repeat; color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.btn { background: #007aff; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 30px; transition: background 0.3s; }
.btn:hover { background: #005bb5; }

/* Servicios */
.services { padding: 100px 0; text-align: center; }
.services h2 { font-size: 2.5rem; margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: #f9f9f9; padding: 30px; border-radius: 10px; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card img { margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }

/* Sobre */
.about { padding: 100px 0; background: #f4f4f4; }
.about-content { display: flex; align-items: center; gap: 50px; }
.about-img { border-radius: 50%; width: 300px; height: 300px; object-fit: cover; }
.about p { font-size: 1.1rem; }

/* Contacto */
.contact { padding: 100px 0; text-align: center; }
.contact h2 { font-size: 2.5rem; margin-bottom: 50px; }
form { max-width: 600px; margin: 0 auto; }
input, textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; }
button { width: 100%; }

/* Footer */
footer { padding: 30px 0; background: #333; color: #fff; text-align: center; }
.social { list-style: none; display: flex; justify-content: center; margin-top: 10px; }
.social li { margin: 0 15px; }
.social a { color: #fff; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .about-content { flex-direction: column; text-align: center; }
    .menu { flex-direction: column; }
    .menu li { margin: 10px 0; }
}
.mission-vision { padding: 100px 0; background: #f8f9fa; }
.mission-vision h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.mv-card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center; }
.mv-card h3 { font-size: 1.8rem; color: #007aff; margin-bottom: 20px; }
.mv-card p { font-size: 1.1rem; line-height: 1.7; }
/* Hero mejorado */
.hero {
    height: 100vh;
    position: relative;
    background: url('https://images.unsplash.com/photo-1555949963-ff933de7a1e6?auto=format&fit=crop&q=80') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

/* Botón principal más premium */
.btn-primary {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: white;
    padding: 18px 48px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.4);
}

/* Cards con hover más dinámico */
.service-card {
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: #0066ff;
}

.service-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

/* Misión/Visión más elegante */
.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}