* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2B6CB0;
    --secondary-color: #215387;
    --dark-color: #1A202C;
    --text-color: #2D3748;
    --light-bg: #F7FAFC;
    --white: #ffffff;
    --border-color: #E2E8F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Top */
.top-header {
    background: var(--light-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.login-link h2 {
    font-size: 1.2rem;
    margin: 0;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Main Section - Logo e Informações */
.main-section {
    padding: 3rem 0;
    text-align: center;
    background: var(--white);
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.3);
}

.company-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.cnpj {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Seção Missão */
.missao-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.missao-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.missao-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.missao-content strong {
    color: var(--dark-color);
}

.missao-content em {
    color: var(--text-color);
    font-style: italic;
}

/* Espaçador */
.spacer {
    height: 150px;
}

/* Seção Contato */
.contato-section {
    padding: 3rem 0;
    background: var(--white);
}

.contato-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.contato-info-box {
    flex: 1;
    min-width: 300px;
}

.contato-info-box h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contato-info-box p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.instagram-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-box {
    width: 60px;
    height: 60px;
}

.instagram-icon {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.instagram-icon:hover {
    transform: scale(1.1);
}

.instagram-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.icon-description {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* Seção Quem Somos */
.quem-somos-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.quem-somos-section .section-heading {
    text-align: center;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.sobre-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.sobre-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.sobre-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.sobre-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 2rem 0;
}

.sobre-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.sobre-content a:hover {
    text-decoration: underline;
}

.whatsapp-button-container {
    text-align: center;
    margin: 2rem 0;
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 40px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Rodapé */
.rodape {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0;
}

.rodape * {
    color: var(--white) !important;
}

.rodape-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rodape-title {
    text-align: center;
    margin-bottom: 2rem;
}

.rodape-title p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rodape-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--white);
}

.rodape-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: var(--white);
}

.rodape-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.rodape-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.rodape-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.rodape-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.rodape-content a {
    color: var(--white);
    text-decoration: underline;
}

.rodape-content a:hover {
    opacity: 0.8;
}

.rodape-content em {
    font-style: italic;
    opacity: 0.9;
}

/* Privacy Link Section */
.privacy-link-section {
    padding: 2rem 0;
    background: var(--dark-color);
    text-align: center;
}

.privacy-link-section h2 {
    margin: 0;
}

.privacy-link-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
}

.privacy-link-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .company-title {
        font-size: 1.5rem;
    }
    
    .cnpj {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .company-title {
        font-size: 1.3rem;
    }
    
    .cnpj {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .contato-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contato-info-box {
        text-align: center;
    }
    
    .contato-info-box h2 {
        text-align: center;
    }
    
    .spacer {
        height: 100px;
    }
    
    .missao-content,
    .sobre-content {
        text-align: left;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .company-title {
        font-size: 1.1rem;
    }
    
    .cnpj {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.3rem;
    }
    
    .spacer {
        height: 80px;
    }
    
    .whatsapp-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
