/* Sobre Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/bg2.1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 40px 60px;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.about-hero-underline {
    width: 200px;
    height: 6px;
    background: #ff1b8d;
    margin: 0 auto 50px;
    border-radius: 3px;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: white;
    margin-bottom: 50px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #111;
    color: white;
}

.values-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: white;
}

.values-underline {
    width: 150px;
    height: 5px;
    background: #ff1b8d;
    margin-bottom: 80px;
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: transparent;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    border-color: #ff1b8d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.2);
}

.value-number {
    background: #ff1b8d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
    flex: 1;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.mission-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.mission-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: white;
}

.mission-underline {
    width: 150px;
    height: 5px;
    background: #ff1b8d;
    margin-bottom: 40px;
    border-radius: 3px;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
    color: white;
}

.corporate-culture {
    margin-bottom: 50px;
}

.culture-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.culture-item {
    margin-bottom: 25px;
}

.culture-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.culture-item h4 strong {
    color: #ff1b8d;
}

.culture-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
    margin-left: 0;
}

/* Final Contact Section */
.final-contact {
    padding: 120px 0;
    background: url('./assets/bg2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.final-contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.final-contact-underline {
    width: 200px;
    height: 6px;
    background: #ff1b8d;
    margin: 0 auto 40px;
    border-radius: 3px;
}

.final-contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    opacity: 0.95;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ff1b8d;
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.4;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
    color: white;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    background: #ff1b8d;
    color: white;
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #e6186e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 27, 141, 0.4);
}

/* Active Navigation Link */
.nav-links a.active {
    color: #ff1b8d;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff1b8d;
}

/* Responsive Design for Sobre Page */
@media (max-width: 1200px) {
    .about-hero {
        padding: 120px 30px 60px;
    }
    
    .about-hero-title {
        font-size: 4rem;
    }
    
    .mission-title, .final-contact-title, .values-title {
        font-size: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mission-content {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        padding: 100px 20px 50px;
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .about-hero-underline, .final-contact-underline {
        width: 150px;
        height: 5px;
        margin-bottom: 40px;
    }
    
    .about-hero-description, .final-contact-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .values-section, .mission-section, .final-contact {
        padding: 80px 0;
    }
    
    .values-title, .mission-title, .final-contact-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .values-underline, .mission-underline {
        margin: 0 auto 60px;
        width: 120px;
        height: 4px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 20px;
        min-height: 180px;
    }
    
    .value-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .value-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-image {
        order: -1;
        height: 300px;
    }
    
    .mission-title {
        text-align: center;
    }
    
    .culture-title {
        font-size: 1.3rem;
    }
    
    .culture-item {
        margin-bottom: 20px;
    }
    
    .culture-item h4 {
        font-size: 0.95rem;
    }
    
    .culture-item p {
        font-size: 0.95rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .map {
        height: 300px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .about-hero-title, .values-title, .mission-title, .final-contact-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .about-hero-underline, .values-underline, .mission-underline, .final-contact-underline {
        width: 100px;
        height: 4px;
    }
    
    .values-section, .mission-section, .final-contact {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 20px 15px;
        min-height: 160px;
    }
    
    .value-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .culture-title {
        font-size: 1.2rem;
    }
    
    .mission-image {
        height: 250px;
    }
    
    .map {
        height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-content {
    animation: fadeInUp 1s ease-out;
}

.value-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }