/* Fondo femenino para la sección encabezado de servicio en trenzas.html */
.service-header-tranquilo {
    background: linear-gradient(120deg, rgba(252,228,236,0.93) 0%, rgba(243,229,245,0.85) 60%, rgba(255,255,255,0.7) 100%);
    box-shadow: 0 4px 24px 0 rgba(255,128,171,0.07);
    border-radius: 1.5rem;
}

@media (max-width: 768px) {
    .service-header-tranquilo {
        border-radius: 0.5rem;
        padding: 1.5rem 0;
    }
}

.fadeUp {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUpAnim 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.fadeUp.delay-1 { animation-delay: 0.2s; }
.fadeUp.delay-2 { animation-delay: 0.4s; }
.fadeUp.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trenzas-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 60%, rgba(173,216,230,0.14) 100%);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(173,216,230,0.11);
    border: 1.5px solid #f3e7f7;
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    margin-bottom: 2.2rem;
    transition: transform 0.3s cubic-bezier(.4,2,.7,.9), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeUpAnim 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.trenzas-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: url('data:image/svg+xml;utf8,<svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="90" cy="90" rx="80" ry="40" fill="%23ffe0f7" fill-opacity="0.45"/><ellipse cx="120" cy="60" rx="30" ry="15" fill="%23b2ebf2" fill-opacity="0.27"/><ellipse cx="60" cy="120" rx="30" ry="12" fill="%23f8bbd0" fill-opacity="0.18"/></svg>') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.trenzas-card > * {
    position: relative;
    z-index: 1;
}

.trenzas-img {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px 0 rgba(173,216,230,0.11);
    object-fit: cover;
    max-height: 400px;
    height: 400px;
    margin-bottom: 1.1rem;
}
.trenzas-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 12px 38px 0 rgba(173,216,230,0.18);
    border-color: var(--primary-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trenzas-card .icon-service {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    margin-right: 0.3rem;
    filter: drop-shadow(0 2px 4px #ffc1e3a3);
}
.trenzas-card .badge-service {
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1rem;
    padding: 0.35rem 1.1rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(255,128,171,0.09);
}
.trenzas-card .price {
    font-size: 1.12rem;
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(255,128,171,0.08);
    padding: 0.35rem 1.1rem;
    border-radius: 1rem;
    display: inline-block;
    margin-top: 0.4rem;
}

.trenzas-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trenzas-card p {
    color: #37474f;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
}

.porque-elegirnos-block {
    background: linear-gradient(120deg, #f8bbd0 0%, #e3f2fd 100%);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(255,128,171,0.09);
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    margin-bottom: 2.2rem;
    margin-top: 2.5rem;
    border: 1.5px solid #f3e7f7;
}
.porque-elegirnos-block h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}
.porque-elegirnos-block ul {
    padding-left: 1.2rem;
}
.porque-elegirnos-block li {
    font-size: 1.09rem;
    color: #37474f;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.porque-elegirnos-block i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.agenda-msg {
    background: linear-gradient(120deg, #e1f5fe 0%, #fce4ec 100%);
    border: 1.5px solid #f3e7f7;
    box-shadow: 0 2px 12px 0 rgba(173,216,230,0.10);
    color: var(--primary-color);
    font-size: 1.08rem;
}
.agenda-msg i {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}
.agenda-msg p {
    margin-bottom: 0;
    color: #37474f;
    font-weight: 600;
    font-size: 1.05rem;
}
.btn-whatsapp {
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(37,211,102,0.08);
}
.btn-whatsapp i {
    color: #fff !important;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #1ebe5d;
    color: #fff;
}
.btn-agendar {
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(255,128,171,0.10);
}
.btn-agendar i {
    color: #fff !important;
}
.btn-agendar:hover, .btn-agendar:focus {
    background: var(--accent-color);
    color: #fff;
}
@media (max-width: 767px) {
    .agenda-msg .d-flex {
        flex-direction: column !important;
        gap: 0.7rem !important;
    }
}
