/* Contact Page Styles */
.contact-page {
    background-color: #000;
    min-height: 100vh;
}

/* Highlight colors */
.color-highlight {
    color: rgba(186, 255, 41, 1);
}

.color-highlight-orange {
    color: rgba(220, 150, 90, 1);
}

/* Primera Sección - Hero */
.hero-contact-section {
    background-color: #000000;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Etiqueta de sección */
.section-label {
    margin-bottom: 2rem;
}

.label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 7%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
}

/* Título principal */
.hero-title-container {
    margin-bottom: 2.5rem;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: -3%;
    color: #ffffff;
    margin: 0;
}

/* Descripción */
.hero-description {
    max-width: 600px;
}

.description-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.description-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Información de contacto */
.contact-info {
    margin-top: 3rem;
}

.contact-address {
    margin-bottom: 2rem;
}

.address-text, .contact-address p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin: 0.5rem 0;
}

.contact-phone {
    margin-bottom: 1rem;
}

.phone-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
    color: rgba(186, 255, 41, 1);
}

.contact-email {
    margin-bottom: 2rem;
}

.email-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
    color: rgba(186, 255, 41, 1);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    text-decoration: underline;
    text-decoration-color: rgba(186, 255, 41, 1);
    text-decoration-thickness: 1px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
    color: rgba(186, 255, 41, 1);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 68px;
    }
    
    .description-text {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .hero-contact-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 110%;
    }
    
    .description-text {
        font-size: 20px;
        line-height: 110%;
    }
}

@media (max-width: 767px) {
    .hero-contact-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 44px;
        line-height: 110%;
    }
    
    .description-text {
        font-size: 18px;
        line-height: 120%;
    }
    
    .label-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
    }
    
    .description-text {
        font-size: 16px;
    }
}
