/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #004aad;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.gradient-bg {
    background: linear-gradient(135deg, #004aad, #0084ff);
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #25d366;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1ebc5b;
}

.btn-secondary {
    background-color: #fff;
    color: #004aad;
    border: 2px solid #004aad;
}

.btn-secondary:hover {
    background-color: #e6f0ff;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.service-icon {
    font-size: 32px;
    color: #004aad;
    margin-bottom: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #002b5c;
    color: #fff;
    padding: 40px 20px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-links a {
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #25d366;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

/* Estilo geral da seção About */
.about {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Conteúdo textual */
.about-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto; /* <- CENTRALIZA HORIZONTALMENTE */
    padding: 0 20px; /* <- GARANTE RESPIRO NAS LATERAIS EM TELAS MENORES */
    text-align: left;
    color: #333;
}

.about-content h2 {
    font-size: 32px;
    color: #007BFF;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Bloco de proposta de investimento */
.investment-proposal {
    background-color: #f9f9f9;
    border-left: 5px solid #007BFF;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.investment-proposal h3 {
    color: #333;
    margin-bottom: 10px;
}

.investment-proposal ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    color: #555;
}

.investment-proposal li {
    margin-bottom: 8px;
}

/* Informações de contato */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 300px;
}

.contact-icon i {
    font-size: 20px;
    color: #007BFF;
}
