@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.cdnfonts.com/css/self-deception');

/* ======== BASE ======== */
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #ffd6e8, #ffe6f9, #fddde6);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    margin: 0;
    color: #333;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h2, h3, h5 {
    font-weight: 700;
    color: #ff4081;
}

.text-gradient {
  background: linear-gradient(90deg, #ff4081, #f50057);
  background-clip: text;
  -webkit-background-clip: text; /* compatibilidad */
  color: transparent;
  -webkit-text-fill-color: transparent; /* compatibilidad */
}


/* ======== SCROLLBAR ======== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff80ab, #ff4081);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #f50057, #c51162);
}

/* ======== SECCIÓN ABOUT ======== */
section .col-lg-6 img {
    background-color: #ffb3c6;
    border-radius: 15px;
    box-shadow: 0 8px 18px rgb(242, 2, 255);
    transition: transform 0.3s ease;
}
section .col-lg-6 img:hover {
    transform: scale(1.03);
}

.hover-shadow {
    transition: all 0.3s ease;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(215, 26, 174) !important;
}

.bg-white {
    background: linear-gradient(180deg, #fff, #fef7fa);
}

.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > .col-md-6 {
    display: flex;
}

.row.g-4 > .col-md-6 > div {
    flex: 1;
    min-height: 180px; /* 🔹 altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra vertical */
    align-items: center;     /* centra horizontal */
    text-align: center;      /* centra el texto */
}


/* ======== TARJETAS DE RESEÑAS ======== */
.card {
    border: none;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    box-shadow: 0 6px 15px rgba(255,64,129,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgb(242, 2, 255);
}
.card-body h5 {
    font-weight: 600;
    color: #ff4081;
}
.card-body h6 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
}
.card-body p {
    font-size: 0.95rem;
    color: #555;
}
.card-body i.fa-quote-left {
    color: #ff4081;
}

/* ======== RESEÑAS - ESTRELLAS ======== */
.list-unstyled i {
    color: #ffc107 !important; /* estrellas doradas */
    margin: 0 2px;
    font-size: 1rem;
}

/* ======== IMAGEN DE USUARIO ======== */
.card img.rounded-circle {
    border: 3px solid #ff4081;
    padding: 3px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(255,64,129,0.25);
}

/* ======== RESPONSIVIDAD ======== */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    h2, h3 {
        font-size: 1.5rem;
    }
    section .col-lg-6 img {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h2, h3 {
        font-size: 1.3rem;
    }
    .card-body p {
        font-size: 0.85rem;
    }
}