* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #EF2664;
}

/* CONTENEDORES */
.container,
.header-container {
    max-width: 1143px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.navbar {
    padding: 25px 0 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    height: 48px;
}

/* RECTÁNGULO */
.header-box {
    width: 500px;
    height: 57px;
    background: #FAC1D3;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-box nav {
    display: flex;
    gap: 40px;
}

.header-box nav a {
    text-decoration: none;
    color: #242045;
    font-weight: 600;
}

/* ================= HERO ================= */

.hero {
    padding: 120px 0 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 540px;
    color: white;
}

.hero-text h1 {
    font-size: 76.3px;
    font-weight: 800;
    line-height: 1;
}

/* BOTONES */
.buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn {
    background: #242045;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    height: 39px;
}

/* IMAGEN */
.hero-img img {
    width: 460px;
    border-radius: 70px 20px 70px 20px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.25),
        0 5px 10px rgba(0,0,0,0.1);
}

/* ================= SERVICIOS ================= */

.servicios {
    padding: 100px 0 140px 0;
}

.servicios-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* TEXTO */
.servicio-texto {
    width: 360px;
    color: white;
}

.servicio-texto h3 {
    color: #242045;
    font-size: 25px;
    margin-bottom: 20px;
}

.servicio-texto p {
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BOTÓN */
.btn-ver {
    background: #242045;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 25px;
}

/* CARDS */
.card {
    width: 329px;
    height: 450px;
    background: #242045;
    border-radius: 28px;
    padding: 30px;
    color: white;

    display: flex;
    flex-direction: column;
}

.card h3 {
    color: #F46490;
    font-size: 25px;
    margin-bottom: 20px;
}

.card p {
    line-height: 1.6;
}

/* HOVER */
.btn:hover,
.btn-ver:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    transition: 0.3s;
}