/* Sobre Page Specific Styles */

/* Hero About Section */
.hero-about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg,
            hsl(220, 40%, 2%) 0%,
            hsla(220, 35%, 1.5%, 0.8) 30%,
            hsl(220, 30%, 1%) 70%,
            hsl(220, 25%, 0.5%) 100%);
    padding: 8rem 0 4rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb-item {
    color: #CFCFCD;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}


.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    max-width: calc(50% - 2rem);
}

.gradient-text {
    background: linear-gradient(135deg, #AA5C2F 0%, #96B4A8 25%, #7CC1DF 50%, #2C6ECB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-section {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.section-icon {
    flex-shrink: 0;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(0, 0, 0, 0.2);
}

.icon-wrapper.blue-gradient {
    background: linear-gradient(145deg, #2C6ECB, #7CC1DF);
}

.icon-wrapper.green-gradient {
    background: linear-gradient(145deg, #96B4A8, #7CC1DF);
}

.icon-wrapper.orange-gradient {
    background: linear-gradient(145deg, #AA5C2F, #96B4A8);
}

.text-content {
    flex: 1;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #CFCFCD;
    line-height: 1.7;
    margin: 0;
}

.hero-description-enhanced {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-description {
    max-width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.liquid-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.liquid-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(170, 92, 47, 0.1) 0%,
            rgba(150, 180, 168, 0.1) 25%,
            rgba(124, 193, 223, 0.1) 50%,
            rgba(44, 110, 203, 0.1) 100%);
    border-radius: 24px;
    z-index: -1;
}

.chart-container {
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    gap: 1rem;
    align-items: end;
    height: 100%;
}

.bar {
    width: 24px;
    border-radius: 12px;
    transition: height 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-card.orange-glow {
    background: rgba(170, 92, 47, 0.2);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.blue-glow {
    background: rgba(44, 110, 203, 0.2);
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.green-glow {
    background: rgba(150, 180, 168, 0.2);
    bottom: 25%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mission Section */
.mission-section,
.team-section,
.technology-section {
    padding: 5rem 0;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.neumorphic-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.neumorphic-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 1px 0 rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mission-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.mission-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #CFCFCD;
    line-height: 1.6;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.member-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: white;
}

.avatar-circle.ceo-gradient {
    background: linear-gradient(145deg, #AA5C2F, #96B4A8);
}

.avatar-circle.backend-gradient {
    background: linear-gradient(145deg, #2C6ECB, #7CC1DF);
}

.avatar-circle.frontend-gradient {
    background: linear-gradient(145deg, #96B4A8, #7CC1DF);
}

.avatar-circle.analyst-gradient {
    background: linear-gradient(145deg, #7CC1DF, #2C6ECB);
}

.avatar-circle.designer-gradient {
    background: linear-gradient(145deg, #AA5C2F, #7CC1DF);
}

.member-info {
    flex: 1;
}

.member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.member-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7CC1DF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.member-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #CFCFCD;
    line-height: 1.6;
    margin: 0;
}

.team-bottom-message {
    margin-top: 3rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.message-icon {
    flex-shrink: 0;
}

.icon-x {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid white;
}

.message-content {
    flex: 1;
}

.message-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.7;
    margin: 0;
}

/* Technology Section - Rebuild */
.technology-section {
    padding: 4rem 0;
}

.tech-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.tech-card {
    flex: 0 1 280px;
    min-height: 200px;
    padding: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-icon {
    width: 24px;
    height: 24px;
}

.tech-icon-orange {
    color: #AA5C2F;
}

.tech-icon-green {
    color: #96B4A8;
}

.tech-icon-blue-light {
    color: #7CC1DF;
}

.tech-icon-blue-dark {
    color: #2C6ECB;
}

.tech-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.tech-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.tech-tag {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        max-width: 100%;
    }

    .text-section {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }


    .hero-description,
    .hero-description-enhanced {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tech-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .team-member {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .team-bottom-message {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .liquid-glass-card {
        padding: 2rem 1.5rem;
    }

    .chart-container {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        max-width: 100%;
    }


    .hero-description {
        font-size: 0.95rem;
    }

    .text-section {
        gap: 0.75rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .floating-card {
        width: 40px;
        height: 40px;
    }
}