/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rosa: #ff5c8a;
    --amarillo: #ffd166;
    --crema: #fff8f0;
    --oscuro: #2e2e2e;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--crema);
    color: var(--oscuro);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* UTILIDADES */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

span {
    color: var(--rosa);
}

.btn {
    display: inline-block;
    background: var(--rosa);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: var(--rosa);
}

.btn-primary {
    background: var(--rosa);
    color: var(--oscuro);
}

/* HEADER */
.header {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    color: var(--rosa);
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: var(--oscuro);
    padding: 10px 15px;
    border-radius: 20px;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--amarillo);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(255, 92, 138, 0.6),
            rgba(255, 209, 102, 0.6)),
        url(../img/bg-1.jpg) no-repeat center/cover;
    height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: black;
}

.hero h2 {
    font-size: 55px;
}

.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 25px;
    max-width: 700px;
    margin: auto;
}

/* ABOUT */
.about {
    display: flex;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.about-story {
    padding-top: 60px;
}

.img-inline {
    float: right;
    width: 280px;
    margin: 0 0 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .img-inline {
        float: none;
        display: block;
        width: 100%;
        margin: 20px 0;
    }
}

/* SERVICES */
.services {
    background: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--crema);
    padding: 40px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card i {
    color: var(--rosa);
    margin-bottom: 15px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
}

/* FOOTER */
.footer {
    background: var(--rosa);
    color: white;
    text-align: center;
    padding: 20px;
}