/* --- VARIABLES GLOBALES --- */
:root {
    --primary-color: #01725a;
    --accent-color: #68c729;
    --dark-bg: #001a14; 
    --white-color: #ffffff;
    --body-font: 'Poppins', sans-serif;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: var(--white-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- SECCIÓN CARGADORES --- */
.servicios {
    background: radial-gradient(circle at center, #014d3c 0%, var(--dark-bg) 100%);
    padding: 5.5rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    text-align: center;
}

/* --- EFECTO DE ESTRELLAS ANIMADAS --- */
.servicios::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.3) 1.5px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 1px, transparent 40px);
    background-size: 400px 400px, 250px 250px;
    background-position: 0 0, 50px 50px;
    opacity: 0.3;
    animation: rotateStars 120s linear infinite;
    z-index: 1;
}

@keyframes rotateStars {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- CONTENIDO --- */
.servicios .container {
    position: relative;
    z-index: 2;
}

.servicios h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    animation: neonPulse 3s infinite ease-in-out;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(104, 199, 41, 0.4); }
    50% { text-shadow: 0 0 25px rgba(104, 199, 41, 0.8), 0 0 40px rgba(104, 199, 41, 0.4); }
}

.servicios > .container > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1.5rem auto 3.5rem;
    opacity: 0.9;
}

/* --- SHOWCASE (IMAGEN + INFO) --- */
.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(104, 199, 41, 0.15);
    transition: all 0.5s ease;
}

.main-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(104, 199, 41, 0.3);
}

.info {
    max-width: 600px;
}

.info h3 {
    font-size: 2.6rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(104, 199, 41, 0.5);
}

.info p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* --- BOTÓN --- */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-color);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(104, 199, 41, 0.4);
}

.btn:hover {
    background-color: var(--white-color);
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(104, 199, 41, 0.8);
}

/* --- MEDIA QUERIES --- */
@media (min-width: 992px) {
    .showcase {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .main-image {
        max-width: 48%;
    }

    .info {
        max-width: 45%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .servicios h2 {
        font-size: 2.5rem;
    }
    .info h3 {
        font-size: 2.1rem;
    }
}