:root {
    --primary-green: #00d000;
    --text-color: #e0e0e0;
    --text-secondary: #d1d5db;
    --bg-color: #0a0a0a;
}

/* =========================================
   Reset & Global Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    flex: 2;
    background-image: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.9) 50%, rgba(10, 10, 10, 0) 100%), url('imagenes/I1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    min-height: 0;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero address {
    font-style: normal;
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.625;
}

/* =========================================
   Main Content
   ========================================= */
.main-content {
    flex: 1.5;
    background-color: var(--bg-color);
    padding: 0 10%;
    display: flex;
    align-items: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 4rem;
}

.services {
    flex: 1;
}

.services p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.625;
}

.logo {
    flex: 0 0 200px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Footer
   ========================================= */
footer {
    flex: 0 0 auto;
    background-color: var(--bg-color);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-content p {
    color: #888;
    font-size: 0.9rem;
}

.footer-content a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: var(--primary-green);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 900px) {
    .container {
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        display: block;
        overflow-y: visible;
    }

    .hero {
        padding: 4rem 5%;
        height: auto;
        min-height: 50vh;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 3rem 5%;
    }

    .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .services p {
        margin: 0 auto;
        text-align: center;
    }

    .logo {
        flex: 0 0 auto;
        width: 150px;
        margin: 0 auto;
    }
}

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