/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #004AAD;
}

.whatsapp-btn {
    background-color: #00A859;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #008a4a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #222222;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #004AAD;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    background-color: #004AAD;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #003a8c;
    transform: translateY(-2px);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004AAD;
    text-align: center;
    margin-bottom: 60px;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sobre-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Serviços Section */
.servicos {
    padding: 80px 0;
    background-color: #ffffff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.servico-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.servico-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.servico-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004AAD;
    margin-bottom: 15px;
}

.servico-description {
    color: #555555;
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.depoimento-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-3px);
}

.depoimento-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento-author strong {
    color: #004AAD;
    display: block;
    margin-bottom: 5px;
}

.depoimento-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background-color: #ffffff;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info h3,
.contato-cta h3 {
    font-size: 1.5rem;
    color: #004AAD;
    margin-bottom: 20px;
}

.contato-item {
    margin-bottom: 20px;
}

.contato-item strong {
    color: #004AAD;
    display: block;
    margin-bottom: 5px;
}

.contato-item a {
    color: #555555;
    text-decoration: none;
}

.contato-item a:hover {
    color: #004AAD;
}

.whatsapp-btn-large {
    background-color: #00A859;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn-large:hover {
    background-color: #008a4a;
}

.contato-cta p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #004AAD;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .servico-card,
    .depoimento-card {
        padding: 25px 20px;
    }
}

