/* RESET Y FONDO (Igual que antes, pero con retoques) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1, #84fab0);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.main-container {
    max-width: 700px;
    width: 100%;
}

/* HEADER */
.header-flor {
    text-align: center;
    padding: 40px 20px;
}

.perfil-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    object-fit: cover;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 3.8rem;
    color: white;
    text-shadow: 3px 3px 15px rgba(107, 76, 163, 0.4);
    margin-bottom: 5px;
}

.tagline {
    font-weight: 400;
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

/* SKILLS REFORZADAS (Ya no se pierden) */
.skills-tags {
    margin-bottom: 35px;
}

.skills-tags span {
    background: white; /* Fondo blanco sólido para que resalte */
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8e44ad;
    margin: 5px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(142, 68, 173, 0.1);
}

/* BOTÓN CONTACTAME EN DEGRADÉ */
.cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #2d6a4f;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    filter: brightness(1.05);
}

/* CARD SERVICIO */
.card-servicio {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.card-header {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.card-header i { font-size: 2.5rem; margin-bottom: 15px; }
.card-header h2 { font-size: 1.6rem; font-weight: 700; line-height: 1.2; }

.card-body {
    padding: 35px;
}

.intro-text {
    font-style: italic;
    color: #777;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.magic-list {
    list-style: none;
    margin-bottom: 30px;
}

.magic-list li {
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    font-size: 1rem;
    color: #555;
    align-items: center;
}

/* Cambiamos el ícono que fallaba por uno gratuito */
.magic-list i { color: #8e44ad; font-size: 1.1rem; }

.pdf-gift {
    background: linear-gradient(to right, #fdf2ff, #ffffff);
    padding: 25px;
    border-radius: 25px;
    border-left: 6px solid #fbc2eb;
    margin-bottom: 35px;
}

.pdf-gift h3 { color: #8e44ad; margin-bottom: 8px; font-size: 1.2rem; }

.ideal-for {
    font-size: 0.95rem;
    background: #f0fff4;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 35px;
}

.ideal-for h4 { color: #2d6a4f; margin-bottom: 12px; }

/* BOTÓN FINAL EN DEGRADÉ */
.btn-consultar {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #a18cd1 0%, #84fab0 100%);
    color: white;
    padding: 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(161, 140, 209, 0.3);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.btn-consultar:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(161, 140, 209, 0.4);
}

/* FOOTER */
.footer-flor {
    text-align: center;
    padding: 50px 0;
}

.footer-flor p { color: white; margin-bottom: 10px; font-weight: 600; }
.back-link { color: white; text-decoration: none; font-size: 0.85rem; opacity: 0.8; }

/* ... (Mantén el Reset y el @keyframes gradientBG igual) ... */

/* CONTENEDOR DE BOTONES HEADER */
.header-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTÓN WHATSAPP (MÁS SOFT) */
.cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #8e44ad;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* BOTÓN TIKTOK (ESTILO FLOR) */
.cta-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7); /* Estilo oscuro de TikTok pero elegante */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.cta-contact:hover, .cta-tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* LA CARD DE SERVICIO (MÁS ETÉREA) */
.card-servicio {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px); /* Efecto vidrio */
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(107, 76, 163, 0.15);
}

.card-header {
    /* Degradado más suave y místico */
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* BOTÓN FINAL DE CONSULTA (DEGRADADO "OSTARA") */
.btn-consultar {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #84fab0 0%, #a18cd1 100%);
    color: white;
    padding: 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.4s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.btn-consultar:hover {
    background: linear-gradient(135deg, #a18cd1 0%, #84fab0 100%); /* Invierte el degradado al pasar el mouse */
}