/* Hero Section */
.hero-quem-somos {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

#particles-js {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dot.png');
    opacity: 0.1;
    animation: overlayFloat 20s linear infinite;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #ffffff;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
}

@keyframes overlayFloat {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-icon i {
    font-size: 24px;
    color: #004d99;
}

.stat-item .numero {
    font-size: 42px;
    font-weight: bold;
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-item .texto {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
}

.hero-btns .btn {
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 1.5s infinite;
}

.hero-btns .btn-outline-light {
    border-width: 2px;
}

.hero-btns .btn-outline-light:hover {
    background: #ffffff;
    color: #004d99;
}

/* Removendo regras que ocultam elementos */
/* .hero-image,
.image-wrapper,
.floating-card,
.card-icon,
.card-text,
.experience-badge {
    display: none;
} */

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #004d99, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item .year {
    position: absolute;
    left: -80px;
    background: linear-gradient(45deg, #004d99, #0066cc);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-item .content {
    margin-left: 100px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item .content h3 {
    color: #004d99;
    margin-bottom: 10px;
}

/* Missão, Visão e Valores */
.mvv-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.mvv-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.mvv-section .section-title h2 {
    color: #000000;
    font-weight: bold;
    margin-bottom: 15px;
}

.mvv-section .section-title .linha-destaque {
    background: #000000 !important;
    width: 80px;
    height: 4px;
    margin: 15px auto;
    border-radius: 2px;
}

.mvv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-container i {
    font-size: 32px;
    color: #ffffff;
}

.mvv-card h3 {
    color: #004d99;
    font-size: 24px;
    margin-bottom: 20px;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.mvv-card ul li:before {
    content: "✓";
    color: #004d99;
    position: absolute;
    left: 0;
}

/* Depoimentos */
.depoimentos {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%) !important;
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 80px 0;
}

#particles-js2 {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
}

.depoimentos .container {
    position: relative;
    z-index: 1;
}

.depoimentos .display-5 {
    color: #ffffff !important;
}

.depoimentos .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.depoimentos .linha-destaque {
    background: #ffffff !important;
}

.depoimento-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.aspas {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aspas i {
    color: #ffffff;
    font-size: 20px;
}

.depoimento-card .texto {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.depoimento-card .autor {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.depoimento-card .autor .info h4 {
    margin: 0;
    color: #004d99;
    font-size: 20px;
    font-weight: 600;
}

.depoimento-card .autor .info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.rating {
    color: #ffd700;
}

/* Equipe */
.membro-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.membro-card:hover {
    transform: translateY(-10px);
}

.membro-card .foto {
    position: relative;
    overflow: hidden;
}

.membro-card .foto img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.membro-card .social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0, 77, 153, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.membro-card:hover .social {
    bottom: 0;
}

.membro-card .social a {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.membro-card .social a:hover {
    color: #ffd700;
    transform: translateY(-3px);
}

.membro-card .info {
    padding: 20px;
    text-align: center;
}

.membro-card .info h4 {
    color: #004d99;
    margin-bottom: 5px;
}

.membro-card .info p {
    color: #666;
    margin: 0;
}

/* Responsividade */
@media (max-width: 991px) {
    .hero-quem-somos {
        min-height: auto;
        padding: 80px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .floating-card {
        right: 0;
    }

    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .floating-card {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animações e Responsividade */
@media (max-width: 991px) {
    .hero-quem-somos {
        min-height: auto;
        padding: 80px 0;
    }

    .experience-content {
        margin-top: 40px;
    }

    .experience-number {
        font-size: 60px;
    }

    .experience-number .plus {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .hero-experience {
        margin-top: 40px;
    }

    .experience-content {
        padding: 30px;
    }

    .experience-number {
        font-size: 50px;
    }

    .experience-number .plus {
        font-size: 35px;
    }

    .experience-text h3 {
        font-size: 20px;
    }

    .experience-text p {
        font-size: 14px;
    }
}

.linha-destaque {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #004d99, #0066cc);
    border-radius: 2px;
    margin: 15px 0;
}

.text-center .linha-destaque {
    margin: 15px auto;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

.particle:nth-child(2n) {
    width: 4px;
    height: 4px;
}

.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
}

.particle:nth-child(4n) {
    background: rgba(255, 215, 0, 0.1);
}

.hero-experience {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
}

.experience-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.experience-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.1));
    z-index: -1;
}

.experience-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.experience-number {
    font-size: 140px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.experience-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.experience-number .plus {
    font-size: 70px;
    margin-left: 5px;
    margin-top: -60px;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text {
    position: relative;
    z-index: 1;
}

.experience-text h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    position: relative;
    padding-bottom: 15px;
}

.experience-text p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ffd700;
}

/* Remover todas as classes antigas dos botões */
.botao-whatsapp {
    display: none;
}

.btn-whatsapp {
    display: none;
}

.botao-subir {
    /* Remover todos os estilos, pois já estão no shared-buttons.css */
} 