* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #1e293b;
    background: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: #0f172a;
    color: #fff;
    padding: 16px 0;
}

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

}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #c9a46b;
    display: flex;
    flex-direction: column;
    line-height: 1;
    letter-spacing: 0.5px;

}

.logo-name {
    font-size: 1.6rem;
    font-family: "Aboreto", system-ui;
    font-weight: 600;
    color: #c9a46b;
}

.logo-sub {
    font-family: "Aboreto", system-ui;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    margin-left: 45px;
    opacity: 0.85;
    color: #c9a46b;
}


.hero {
    background:
        linear-gradient(rgba(15, 23, 42, 0.75),
            rgba(15, 23, 42, 0.75)),
        url("../assets/images/hero-image.png") center/cover no-repeat;
    padding: 300px 0;
}

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

.hero-image img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 600;
    font-style: bold;
    margin-bottom: 16px;
    color: #ccc;
}

.hero-text p {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 400;
    font-style: bold;
    margin-bottom: 24px;
    line-height: 1.6;
    color: white
}

.btn-primary {
    background: #c9a46b;
    color: #000;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.hero-form {
    background: #121424b4;
    padding: 24px;
    border-radius: 8px;
    color: #faf9f9;
}

.hero-form h3 {
    margin-bottom: 16px;
    text-align: center;
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 600;
    font-style: normal;

}

.hero-form input,
.hero-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.hero-form button {
    width: 100%;
    padding: 12px;
    background: #c9a46b;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.services {
    padding: 60px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.service {
    padding: 24px;
}

.benefits {
    padding: 60px 0;
    background: #f1f5f9;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.benefit {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
}

.cta {
    background: #0f172a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 16px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .hero-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 2;
    }

    .hero-form {
        order: 3;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}