:root {
    --morado-fondo: #b894c0;
    --morado-oscuro: #7a4fa4;
    --blanco: #ffffff;
    --texto-suave: #f9f5ff;
    --shadow-suave: 0 10px 25px rgba(0,0,0,0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Playfair Display", serif;
    background: var(--morado-fondo);
    color: var(--blanco);
    min-height: 100vh;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.btn {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 26px;
    border-radius: 999px;
    transition: 0.15s ease;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    gap: 18px;
}

.logo-box {
    width: 200px;
    height: 150px;
    border-radius: 26px;
    background: #eacfef;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box .logo {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-text .marca {
    font-size: 1rem;
    letter-spacing: 0.22em;
    opacity: 0.85;
}

.hero-text .subtitulo {
    font-family: "Alex Brush", cursive;
    font-size: 2.4rem;
    max-width: 450px;
    line-height: 1.2;
}

.botones-principales {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.btn-servicios {
    background: var(--blanco);
    color: var(--morado-oscuro);
    box-shadow: var(--shadow-suave);
    text-decoration: none;
}

.btn-servicios:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.botones-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.btn-icono {
    width: 220px;
    padding: 11px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.4);
    text-decoration: none;
    color: var(--texto-suave);
    backdrop-filter: blur(4px);
}

.btn-icono:hover {
    background: rgba(255,255,255,0.18);
}

.btn-icono .iconito {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 3px #fff);
}

.servicios-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-servicios {
    width: 200px;
    height: 150px;
    border-radius: 26px;
    background: #eacfef;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.logo-servicios-img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.titulo-marca {
    font-size: 1rem;
    letter-spacing: 0.25em;
    opacity: 0.85;
    margin-top: 4px;
    margin-bottom: 4px;
}

.titulo-lista {
    font-family: "Alex Brush", cursive;
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.btn-volver {
    background: white;
    color: var(--morado-oscuro);
    padding: 10px 28px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 35px;
    box-shadow: var(--shadow-suave);
}

.tarjeta-precios {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 32px;
    padding: 50px 70px;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    overflow: hidden;
}

.bloque {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.2s ease;
}

.bloque h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.icono-y-titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 5px;
}

.icono-grande {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
}

.titulo-bonito {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: white;
    letter-spacing: 0.5px;
}

.titulo-servicios {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.lista-servicios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-servicios li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lista-servicios li:last-child {
    border-bottom: none;
}

.footer {
    text-align: center;
    padding: 40px 0 20px;
    opacity: 0.8;
}

@media (max-width: 600px) {

    .tarjeta-precios {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .icono-y-titulo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .icono-grande {
        width: 40px !important;
        margin-bottom: 4px;
    }

    .titulo-bonito {
        font-size: 1.4rem !important;
    }

    .lista-servicios li {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 6px 0;
        font-size: 0.95rem;
    }

    .lista-servicios span:first-child {
        max-width: 65%;
        display: inline-block;
        line-height: 1.25;
    }

    .lista-servicios span:last-child {
        white-space: nowrap;
        margin-left: 6px;
    }
}
