:root {
    --pink: #e91e63;
    --pink-dark: #c2185b;
    --pink-soft: #fff2f7;
    --text: #24242a;
    --muted: #666671;
    --line: #ffd1e1;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    background: linear-gradient(108deg, #fff6fa 0%, #fff6fa 42%, #ffffff 42%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 60px;
}

.logo {
    width: 390px;
    max-width: 90%;
    margin-bottom: 35px;
}

h1 {
    margin: 0 0 25px;
    font-size: clamp(58px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 900;
}

h1 span {
    color: var(--pink);
}

.lead {
    max-width: 560px;
    margin: 0;
    font-size: 25px;
    line-height: 1.45;
}

.lead strong {
    font-weight: 900;
}

.hero-photo img {
    width: 100%;
    display: block;
    border-radius: 0 0 0 70px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.frase-destacada {
    padding: 35px 0 15px;
}

.frase-card {
    max-width: 640px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-radius: 22px;
    background: #ffe4ee;
    color: var(--pink-dark);
    box-shadow: 0 14px 38px rgba(233, 30, 99, 0.12);
}

.frase-icono {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: 34px;
}

.frase-card p {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.section {
    padding: 58px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 0 38px;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 22px;
    font-weight: 900;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 310px;
    max-width: 22vw;
    height: 2px;
    background: var(--pink);
    opacity: 0.55;
}

.brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}

.brand-card {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.brand-card:last-child {
    border-right: none;
}

.brand-card img {
    width: 100%;
    max-width: 170px;
    max-height: 72px;
}

.acciones {
    background: var(--pink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.btn {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 2px solid var(--pink);
    border-radius: 18px;
    background: var(--white);
    color: var(--pink-dark);
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    transition: 0.2s ease;
}

.btn.primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.28);
}

.btn:hover {
    transform: translateY(-3px);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.07);
}

.feature h3 {
    margin: 0 0 12px;
    color: var(--pink);
    font-size: 24px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.gallery img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery img:first-child {
    height: 558px;
    grid-row: span 2;
}

.contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 22px;
    border-right: 1px solid var(--line);
    background: var(--white);
}

.contact-item:last-child {
    border-right: none;
}

.icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: 28px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.contact-item span {
    color: var(--muted);
    font-size: 16px;
}

footer {
    padding: 24px 0;
    background: var(--pink);
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 35px 0;
        background: #fff6fa;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-photo {
        order: -1;
    }

    .hero-photo img {
        border-radius: 28px;
    }

    h1 {
        font-size: 54px;
    }

    .lead {
        font-size: 20px;
    }

    .brands {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .action-grid,
    .features,
    .contact {
        grid-template-columns: 1fr;
    }

    .contact-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img,
    .gallery img:first-child {
        height: auto;
        grid-row: auto;
    }

    .section-title {
        letter-spacing: 5px;
        font-size: 18px;
    }
}
