* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    height: 60px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #103d6b;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #103d6b, #1e6bb8);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #103d6b;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.bg-light {
    background: #f4f6f9;
}

.bg-dark {
    background: #103d6b;
    color: #fff;
}

.section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #103d6b;
}

.bg-dark h2 {
    color: #fff;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* BENEFITS */
.benefits {
    list-style: none;
    max-width: 500px;
    margin: auto;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* FOOTER */
.footer {
    background: #0b2d4d;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.hero-corporativo {
    background: linear-gradient(
        rgba(16, 61, 107, 0.95),
        rgba(16, 61, 107, 0.95)
    ), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-brand {
    flex: 0 0 180px;
    text-align: center;
}

.hero-logo-left {
    width: 170px;
    max-width: 100%;
    background: transparent;
}


.hero-text {
    max-width: 600px;
    text-align: left;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero-text h2 {
    font-size: 18px;
    font-weight: 500;
    color: #cfe2ff;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.btn-primary {
    background: #ffffff;
    color: #103d6b;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e6eff9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-brand {
        margin-bottom: 20px;
    }
}

.trust-bar {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-number {
    font-size: 26px;
    font-weight: bold;
    color: #103d6b;
    margin-bottom: 4px;
}

.trust-text {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
}
