/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* =========================
   FONDO GLOBAL
========================= */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/home/img/bg-masthead.jpg') no-repeat center center/cover;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.main-content {
    position: relative;
    z-index: 1;
    padding-top: 80px; /* 🔥 evita choque con header */
}

/* =========================
   HERO
========================= */
.hero {
    padding: 60px 20px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .highlight {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero .description {
    color: #ccc;
}

/* =========================
   SWIPER (HOME)
========================= */
.swiper-section {
    margin-top: 0;
}

.swiper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .swiper-slide img {
        object-fit: contain;
        background: transparent;
    }
}

/* =========================
   SECCIONES GENERALES
========================= */
.section {
    padding: 60px 20px;
}

/* =========================
   TEXTOS
========================= */
.text-white-50 {
    color: rgba(255,255,255,0.6);
}

/* =========================
   CARDS (ACERCA)
========================= */
.card {
    background: #111;
    border: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    height: auto;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
}

/* =========================
   BOTONES
========================= */
.btn-success {
    background: #00ff88;
    border: none;
    color: #000;
    font-weight: bold;
}

.btn-success:hover {
    background: #00ffaa;
}

/* =========================
   REDES SOCIALES
========================= */
.redes-sociales i {
    font-size: 28px;
    margin: 10px;
    color: #00ff88;
    transition: 0.3s;
}

.redes-sociales i:hover {
    color: #00ffaa;
    transform: scale(1.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}
