:root {
    --primary: #002459;
    --secondary: #002f75;
    --accent: #f4b400;
    --light: #EEEEEE;    
    --dark: #1F2937;     
    --gloss: rgba(255,255,255,0.3);
}

.logo-quem-somos {
    width: 280px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: all 0.5s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.text-tagline-quem-somos {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section, .vision-section, .about-section {
    background-color: light;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

.mission-section {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.vision-section {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.about-section {
    margin-top: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.btn-padrao {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-padrao:hover {
    background-color: #fff3cd;
    color: var(--secondary);
}

.values-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    max-width: 1800px;
    padding: 4rem 2rem;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.card-section{
    text-align: justify;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    gap: 3rem;
    margin-left: 1em;
    margin-right: 1em;
}

.content-image {
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease-out 0.3s;
    overflow: hidden;
    min-width: 480px;
}

.content-image img {
    opacity: 0.8;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    object-fit: cover;
}

.content-image:hover img {
    opacity: 1;
}

.card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 20px 20px 0 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card p{
    padding-top: 30px;
    font-size: 16px;
    text-align: justify;  
    hyphens: auto;  
    line-height: 1.5;  
}

.value-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    margin: 3rem auto 40px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
    position: relative;
}

.div_description {
    flex: 1;
    min-width: 260px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 0;
}

.div_description h2 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.div_form {
    flex: 2;
    min-width: 260px;
    max-width: 500px;
    background: rgba(255,255,255,0.13);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    font-size: 1rem;
    color: #222;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 0.2rem;
    transition: box-shadow 0.2s;
}

.form-control:focus {
    outline: 2px solid var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    max-height: 250px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.form-check-input {
    margin-right: 0.7rem;
    accent-color: var(--accent);
}

.form-check-label {
    font-size: 0.95rem;
    color: #eee;
}

.div_description ul.contact-info {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    font-size: 1rem;
    color: #fff;
}

.div_description ul.contact-info li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reverse {
    flex-direction: row-reverse;
}

.slide-fade-right {
    transform: translateX(100px);
}

.slide-fade-left {
    transform: translateX(-100px);
}

.slide-fade-image-right {
    transform: translateX(100px) scale(0.9);
}

.slide-fade-image-left {
    transform: translateX(-100px) scale(0.9);
}

.card-section.visible,
.content-image.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* .contact-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gloss) 0%, transparent 70%);
    animation: shine 12s infinite linear;
    pointer-events: none;
} */

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 2rem 3rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-card:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.values-section h2::after {
    background: var(--accent);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.particle-quem-somos {
    position: absolute;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}


@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .mission-section { margin-top: -40px; }

    .card-section {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .content-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .content-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .values-section::before {
        display: none;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0.5rem;
    }
    .div_description, .div_form {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .reverse {
        flex-direction: none;
    }
    .slide-fade-right {
        transform: none;
    }

    .slide-fade-left {
        transform: none;
    }

    .slide-fade-image-right {
        transform: none;
    }

    .slide-fade-image-left {
        transform: none;
    }

    .card-section.visible,
    .content-image.visible {
        opacity: none;
        transform: none;
    }
}