/* ARQUIVO: sobre.css */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.sobre-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--light-blue) 100%);
    margin-top: 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sobre-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--red-accent);
}

.hero-breadcrumb span:last-child {
    color: var(--red-accent);
    font-weight: 600;
}

/*--------------------------------------------------------------
# Nossa História Section
--------------------------------------------------------------*/

.nossa-historia {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.historia-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--red-accent), var(--blue-medium));
    border-radius: 20px;
    z-index: 1;
}

.historia-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: block;
}

.anos-experiencia {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

.anos-numero {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.anos-texto {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    margin-top: 5px;
}

.historia-content {
    padding-left: 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.historia-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.historia-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--red-accent);
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue);
}

/*--------------------------------------------------------------
# Valores Section
--------------------------------------------------------------*/

.valores-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

.valor-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red-accent), var(--blue-medium));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.valor-card:hover::before {
    transform: scaleX(1);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.valor-card:hover .valor-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--blue-medium), var(--red-accent));
}

.valor-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.valor-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/*--------------------------------------------------------------
# Diferenciais Section
--------------------------------------------------------------*/

.diferenciais-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.diferenciais-image-wrapper {
    position: relative;
}

.diferenciais-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.3rem;
    color: var(--red-accent);
}

.badge-1 {
    top: 30px;
    right: -20px;
}

.badge-2 {
    bottom: 30px;
    left: -20px;
    animation-delay: 1.5s;
}

.diferenciais-content {
    padding-right: 40px;
}

.diferenciais-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.diferencial-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.diferencial-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Estatísticas Section
--------------------------------------------------------------*/

.estatisticas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    position: relative;
    overflow: hidden;
}

.estatisticas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.estatistica-card {
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.estatistica-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.estatistica-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--red-accent);
}

.estatistica-numero {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, white, var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.estatistica-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.cta-section {
    padding: 100px 0;
    background: white;
}

.cta-content {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
    color: white;
}

.cta-button i {
    font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sobre-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .nossa-historia,
    .valores-section,
    .diferenciais-section,
    .estatisticas-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .historia-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .diferenciais-content {
        padding-right: 0;
        margin-top: 40px;
    }
    
    .anos-experiencia {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -20px;
    }
    
    .anos-numero {
        font-size: 2rem;
    }
    
    .anos-texto {
        font-size: 0.8rem;
    }
    
    .floating-badge {
        position: static;
        display: inline-flex;
        margin: 10px;
        animation: none;
    }
    
    .diferenciais-image-wrapper {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .valor-card {
        margin-bottom: 20px;
    }
    
    .diferencial-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        padding: 50px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}