/* General */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #000000; color: #ffffff; line-height: 1.6; scroll-behavior: smooth; }
.highlight { color: #FF0000; }

/* Navbar */
header { background: rgba(0, 0, 0, 0.95); padding: 15px 5%; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid #FF0000; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { color: white; text-decoration: none; margin-left: 25px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links li a:hover { color: #FF0000; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: #111; min-width: 200px; top: 100%; border-radius: 4px; border: 1px solid #333; }
.dropdown-content a { padding: 12px 16px; display: block; margin: 0 !important; }
.dropdown:hover .dropdown-content { display: block; }

/* Hero */
.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.btn-main { background-color: #FF0000; color: white; padding: 15px 40px; text-decoration: none; border-radius: 50px; font-weight: bold; display: inline-block; margin-top: 10px; transition: 0.3s; cursor: pointer; border: none; }
.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); }

/* Secciones Comunes */
.nosotros-container, .servicios-section, .ofertas-section, .contacto-section { padding: 100px 10%; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 3rem; text-transform: uppercase; }

/* Nosotros */
.content-block { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.content-block.reverse { flex-direction: row-reverse; }
.image-placeholder { flex: 1; height: 350px; border-radius: 20px; border: 3px solid #FF0000; background-size: cover; background-position: center; }
.text { flex: 1; }
.text h2 { font-size: 2.5rem; margin-bottom: 20px; }

/* Servicios */
.category-title { font-size: 1.8rem; color: #ffffff; border-left: 5px solid #FF0000; padding-left: 15px; margin-bottom: 25px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card { background: #111; padding: 30px; border-radius: 15px; border: 1px solid #333; transition: 0.4s; position: relative; overflow: hidden; }
.service-card:hover { border-color: #FF0000; transform: translateY(-5px); }
.service-card h4 { color: #FF0000; margin-bottom: 10px; }
.highlight-card { border: 1px dashed #FF0000; }

/* Ofertas */
.vacante-item { background: #111; border: 1px solid #333; margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.vacante-header { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.vacante-header:hover { background: #1a1a1a; }
.vacante-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.5s ease-in-out; background: #080808; }
.vacante-body.active { padding: 20px; max-height: 1000px; border-top: 1px solid #FF0000; }
.btn-postular { background: #FF0000; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; margin-top: 15px; }

/* Contacto */
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.perfil-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.foto-perfil { width: 260px; height: 260px; border-radius: 50%; border: 3px solid #FF0000; object-fit: cover; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-btn { width: 55px; height: 55px; background: #111; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid #333; transition: 0.3s; }
.social-btn img { width: 45px; height: 45px; object-fit: contain; }
.social-btn:hover { border-color: #FF0000; transform: translateY(-3px); }
.contacto-form input, .contacto-form textarea { width: 100%; padding: 15px; background: #111; border: 1px solid #333; color: white; margin-bottom: 15px; border-radius: 8px; font-family: inherit; }
.contacto-form input:focus { border-color: #FF0000; outline: none; }

@media (max-width: 850px) {
    .contacto-grid, .content-block, .content-block.reverse { flex-direction: column; grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}