/* style.css */


:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --blue-prof: #005B96;
    --accent: #3498db;
    --ahover: #23f806;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --black: #000;
    --btn: #4CAF50;
    --bg-card: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--blue-prof);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo{
    display: flex;
    align-items:center;
    justify-content: center;
}

.logo img {
    height: 50px;
}

.titulo{
    color: var(--light);
    font-size: 1rem;
    
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--ahover);
}

.btn-whatsapp {
    background-color: var(--btn);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--accent);
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Hero Section */
.sobre-hero {
     background: linear-gradient(rgba(0,91,150,0.7), rgba(0,91,150,0.7)), url('../img/fundo_faixa.png') center/cover no-repeat;
    height: 150px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.sobre-hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.sobre-hero p {
    font-size: 1.2rem;
}

/* Nossa História */
.nossa-historia {
    padding: 10px 0;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.historia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.historia-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.destaques {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.destaque-item {
    text-align: center;
}

.numero {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.historia-imagem{
    text-align: center;
}

.historia-imagem img {
    justify-content:end;
    justify-content: center;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Valores */
.valores {
    background-color: var(--light);
    padding: 80px 0;
    text-align: center;
}

.valores h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.valor-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.valor-card:hover {
    transform: translateY(-10px);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.valor-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.valor-card p {
    color: var(--text-light);
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.diferencial-item h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.diferencial-item p {
    color: var(--text-light);
}

/* Equipe */
.equipe {
    padding: 80px 0;
    background-color: var(--light);
}

.equipe h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.equipe-desc {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.membro {
    background: var(--white);
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.membro-foto {
    width: 150px;
    height: 150px;
    border-radius: 10%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.membro p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
     background: linear-gradient(rgba(0,91,150,0.7), rgba(0,91,150,0.7)), url('../img/fundo_faixa.png') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-whatsapp {
    background-color: var(--btn);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--accent);
}

.btn-call {
    background-color: var(--primary);
    color: var(--whiter);
}

.btn-call:hover {
    background-color: var(--dark);
}

.btn i {
    margin-right: 10px;
}



/* Responsividade */
@media (max-width: 992px) {
    .historia-content {
        grid-template-columns: 1fr;
    }
    
    .valores-grid,
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .nav ul {
        margin: 20px 0;
    }
    
    .sobre-hero {
        height: 300px;
    }
    
    .sobre-hero h1 {
        font-size: 2rem;
    }
    
    .destaques {
        flex-direction: column;
        gap: 20px;
    }
    
    .valores-grid,
    .diferenciais-grid,
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
}