* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0a0f1c;
    color: #fff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: fixed;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

nav a {
    margin: 0 15px;
    color: #ccc;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
}

.btn-primary {
    background: #1e90ff;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #187bcd;
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid #1e90ff;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

/* hero */
.hero {
    height: 100vh;
    background: url("pagina-inicio.png") no-repeat center/cover;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 30, 0.75);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    max-width: 600px;
}

.hero span {
    color: #1e90ff;
    font-size: 14px;
}

.hero h2 {
    font-size: 50px;
    margin: 20px 0;
}

.hero h1 {
    font-size: 50px;
    margin: 20px 0;
}

.hero p {
    color: #ccc;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 20px;
}

/* portifolio */
.portfolio {
    padding: 80px 60px;
    text-align: center;
}

.portfolio h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.portfolio p {
    color: #aaa;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #1e90ff;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #bbb;
    margin-bottom: 15px;
}

.card button {
    background: #1e90ff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.card button:hover {
    background: #187bcd;
}

/* BENEFÍCIOS */
.beneficios {
    padding: 80px 40px;
    text-align: center;
}

.beneficios h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.beneficios p {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 14px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.beneficios-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.beneficios-card:hover {
    transform: translateY(-5px);
    border-color: #1e90ff;
}

.beneficios-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.beneficios-card p {
    color: #bbb;
    font-size: 14px;
}

/* CONTATO */
.contact {
    padding: 80px 40px;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact p {
    color: #aaa;
    margin-bottom: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* INFO */
.contact-info {
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
}

/* FORMULARIO */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.contact-form button {
    background: #1e90ff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    line-height: 2;
}

.contact-form button:hover {
    background: #187bcd;
}

/* /* RESPONSIVO CONTATO /* */
@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }
}

/* RESPONSIVO beneficios/* */

@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beneficios {
        padding: 60px 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficios h2 {
        font-size: 26px;
    }
}

/* 📱 RESPONSIVO */

/* TABLET */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 40px;
    }
}

/* CELULAR */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .portfolio {
        padding: 60px 20px;
    }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}