/* About Page Specific Styles - Apenas estilos usados nesta página */

/* Animações para folhas decorativas */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* About Section - Neomorphic */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    contain: layout style paint;
}

/* About Intro Section */
.about-intro {
    margin-bottom: 4rem;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: visible;
}

.about-intro-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Folhas decorativas - Intro Image */
.about-intro-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(-25deg);
    filter: blur(2px);
    transition: opacity 0.3s ease-out;
}

.about-intro-image.animate-leaves::before {
    opacity: 0.6;
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.about-intro-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -35px;
    width: 90px;
    height: 90px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(45deg);
    filter: blur(1.5px);
    transition: opacity 0.3s ease-out;
}

.about-intro-image.animate-leaves::after {
    opacity: 0.5;
    animation: slideInFromRight 1s ease-out 0.5s both;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-lead {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* About Safety Section */
.about-safety {
    margin-bottom: 4rem;
}

.about-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: visible;
}

.about-safety-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-safety-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-safety-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Folhas decorativas - Safety Image */
.about-safety-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(-15deg);
    filter: blur(1.8px);
    transition: opacity 0.3s ease-out;
}

.about-safety-image.animate-leaves::before {
    opacity: 0.55;
    animation: slideInFromLeft 1.2s ease-out 0.4s both;
}

.about-safety-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -25px;
    width: 110px;
    height: 110px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(35deg);
    filter: blur(2px);
    transition: opacity 0.3s ease-out;
}

.about-safety-image.animate-leaves::after {
    opacity: 0.5;
    animation: slideInFromRight 1.2s ease-out 0.6s both;
}

/* Missão, Visão e Valores */
.about-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.mvv-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-color);
}

.mvv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color-emphasis);
    color: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.mvv-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1;
}

.mvv-values-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mvv-values-list li svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Markets Section - O que você vai produzir */
.markets {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Diferenciais Section */
.about-differentials {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
}

.about-differentials-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-differentials-image-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.about-differentials-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-differentials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Folhas decorativas - Differentials Image */
.about-differentials-image::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -45px;
    width: 130px;
    height: 130px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(-30deg);
    filter: blur(2.2px);
    transition: opacity 0.3s ease-out;
}

.about-differentials-image.animate-leaves::before {
    opacity: 0.6;
    animation: slideInFromLeft 1.1s ease-out 0.2s both;
}

.about-differentials-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 95px;
    height: 95px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: rotate(50deg);
    filter: blur(1.5px);
    transition: opacity 0.3s ease-out;
}

.about-differentials-image.animate-leaves::after {
    opacity: 0.5;
    animation: slideInFromRight 1.1s ease-out 0.4s both;
}

.differentials-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.differential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.differential-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.differential-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.differential-item:nth-child(odd) svg {
    color: var(--primary-color);
}

.differential-item:nth-child(even) svg {
    color: var(--secondary-color);
}

.differential-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* About Stats - Números de impacto */
.about-stats {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 0.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--secondary-color);
    box-sizing: border-box;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--primary-color-emphasis);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .about-mvv {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-lead {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-differentials {
        padding: 1.5rem;
    }

    .about-differentials-image {
        margin-bottom: 2rem;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        order: -1;
    }

    .about-safety-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-safety-image {
        order: -1;
    }

    .mvv-card {
        padding: 1rem;
    }

    .about-lead {
        font-size: 1.35rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-safety-title {
        font-size: 1.5rem;
    }

    .about-differentials-title {
        font-size: 1.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .about-stats {
        gap: 16px;
    }

    .differential-item {
        padding: 0.875rem 1rem;
    }

    .differential-item span {
        font-size: 0.875rem;
    }
}