/* About Page Styles */

/* Hero Banner */
.about-hero-banner {
    position: relative;
    height: 400px;
    background-image: url('../images/data-center-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 140px 0;
}

.about-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-triangle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    height: 100%;
    z-index: 1;
}

.hero-triangle svg {
    width: 100%;
    height: 100%;
}

/* Service Description Section */
.service-description-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-description p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-info-box {
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box-header {
    background-color: var(--principal);
    padding: 20px;
    color: var(--white);
}

.info-box-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.titulo-mision {
    background-color: var(--principal);
    padding: 10px;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.titulo-mision h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    width: 100%;
    text-align: center;
}

.info-box-content {
    padding: 20px;
}

.info-box-content p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Process Steps Section */
.process-steps-section {
    padding: 50px 0 80px;
    background-color: #fff;
}

.process-step {
    margin-bottom: 30px;
}

.process-step-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.process-step-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .process-step-image img {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--principal);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-content {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
    text-align: justify;
}

/* CTA Section */
.parallax-cta {
    padding: 120px 0;
    background-image: url('../images/parallax-bg-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.cta-button {
    margin-top: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #fff;
    color: var(--principal);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-content p {
        font-size: 16px;
    }
    
    .info-box-header h2 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .about-hero-banner {
        height: 350px;
    }
    
    .about-hero-content {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 28px;
    }
    
    .service-description-section {
        padding: 30px 15px;
    }
    
    .process-steps-section {
        padding: 40px 0 60px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .about-hero-banner {
        height: 200px;
    }
    
    .about-hero-content {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 24px;
    }
    
    .about-hero-content p {
        font-size: 14px;
    }
    
    .service-description p {
        font-size: 14px;
    }
    
    .info-box-header h2 {
        font-size: 18px;
    }
    
    .info-box-content p {
        font-size: 14px;
    }
    
    .process-step-content p {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    .btn-cta i.fa-whatsapp {
        font-size: 50px;
    }
}