@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1C1C1C;
    --secondary-color: #2A2A2A;
    --accent-color: #FF5722;
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --background-dark: rgba(22, 22, 22, 0.9);
    --card-background: rgba(40, 40, 40, 0.7);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
   /* background-image: url('./images/background_desktop.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: var(--primary-color);
    padding-top: 70px;
    font-size: 1.1rem;
   
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: -1;
}

/* Layout Principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    background-color: var(--background-dark);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

main .container {
    padding: 2rem 0;
}

/* Cabeçalho */
header {
    border-bottom: 1px solid #3C3C3C;
}

#menu-toggle {
    display: none;
    /* Escondido inicialmente */
    background: none;
    border: none;
    color: var(--cor-secundaria);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

nav .container {
    background-color: transparent;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #111111;
    border-bottom: 1px solid #333;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.logo-container {
    height: 40px;
    /* Ajuste conforme necessário */
    display: flex;
    align-items: center;
    justify-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 160px;
    /* Limite máximo de largura */
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.9;
}

/* Seções */
.section {
    padding: 3rem 1rem;
    margin-bottom: 1rem;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}
s
/* Tipografia */
h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    padding-bottom: 0.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

h2:hover{
    zoom: 1.02;
}

h3 {
    font-size: 1.4rem;
    color: #f5f5f5;
    margin: 1.5rem 0 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Listas */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.custom-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-secondary);
}

.custom-list li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.custom-list li strong {
    color: var(--text-color);
}

/* Cards de Soluções */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-card {
    background: var(--card-background);
    padding: 1.8rem;
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.solution-card h3 {
    margin-top: 0;
    color: var(--accent-color);
}

/* Estilos para Valores */
#valores ul li strong {
    color: var(--accent-color);
}

/* Estilos para Virtudes */
.virtues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.virtue-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.virtue-card:hover {
    transform: translateY(-5px);
}
.section-content h3 {
    color: var(--accent-color);
}

.virtue-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Seção de Contato */
.contact-info {
    background: var(--card-background);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.contact-methods {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 1rem;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-secondary);
    gap: 0.5rem;
    /* Centraliza o ícone e o texto */
}

.contact-link .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    /* Remova qualquer margin ou padding extra aqui */
    line-height: 1;
    /* Garante que o ícone não tenha espaçamento vertical extra */
}


.contact-link:hover {
    background: rgba(255, 87, 34, 0.2);
    transform: translateY(-3px);
    color: var(--text-color);
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.soon-notice {
    font-style: italic;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

css .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    /* Reduzi um pouco o tamanho para garantir que caiba */
    margin-bottom: 0.5rem;
    /* Adicionei margem na parte inferior para separar do texto */
}

/* Removi o .social-item span que estava duplicado e conflitante */
.contact-link span {
    font-size: 0.9rem;
    font-weight: 500;
    /* Removi o font-size: 22px que estava muito grande */
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.facebook {
    background-color: #1877F2;
}

.contact-form{
    background: var(--card-background);
    padding: 1.8rem;
    border-radius: 5px;
    
}

.form-group {
    display: flex;
    flex-direction: column;
  
}

.form-group label {
    font-size: small;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid #444;
    background: #222;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
}

.social-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-form button {
    background-color: #222;
    color: #fff;
    border: 2px solid var(--accent-color);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    float: right;
    margin-top: 1rem;
}
.contact-form button:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: #fff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Rodapé */
footer {
    text-align: center;
    font-size: 0.9rem;
    background: transparent;
    padding: 3em;
    color: #999;
    width: 100%;
    box-sizing: border-box;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff784e;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
        padding-top: 60px;
    }

    .container {
        max-width: 700px;

    }

    #menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-container {
        flex-direction: row;
        /* Alterado para row para alinhar logo e botão */
        align-items: center;
        position: relative;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        /* Oculto por padrão */
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 1.5rem;
        position: absolute;
        top: 70px;
        /* Altura do header */
        left: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .navbar.active .nav-links {
        display: flex;
        /* Mostra quando a classe active está presente */
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .logo-container {
        height: 35px;
        /* Tamanho menor para mobile */
    }

    .logo-img {
        max-width: 150px;
    }

    /* Ajuste de posicionamento com o botão */
    .nav-container {
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 85%;
    }
}

/* Efeitos de transição para suavizar carregamento */
.section {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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