:root {
    --epifania-purple: #ffffff;
    --epifania-turquoise: #5DD8C7;
    --epifania-pink: #FFB3BA;
    --epifania-gradient: linear-gradient(135deg, #5DD8C7 0%, #8B7EC8 50%, #B19CD9 100%);
    --epifania-gradient-reverse: linear-gradient(135deg, #B19CD9 0%, #8B7EC8 50%, #5DD8C7 100%);
    --fondo-epifania: #fff4ff;
    --color-titulos: #803cc1;
    --color-texto: #1d1c1c;

    /* Tipografías */
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
}

/* ==========================
    General Reset and Layout
========================== */




#texto-h1::after {
    content: '|';
    animation: blink .7s step-end infinite;
    margin-left: 2px;
    color: var(--color-titulos);
}

@media (max-width: 640px) {}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    background: rgba(61, 197, 184, 0.9);
    color: #71669b;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    /* animation: fadeInUp 1s ease-out 2s forwards; */
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: bold;
}

/* ==========================
    Responsive Styles
========================== */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
:root {
    --color-black: #1d1c1c;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray-medium: #6c757d;
    --gradient-primary: linear-gradient(135deg, #1d1c1c 0%, #2c2c2c 100%);
    --gradient-accent: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --aura-glow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
}

/* HEADER */
.header {
    background: var(--gradient-primary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* Estilos para el texto del header */
.header-title {
    color: white;
    font-size: 2rem;
    font-weight: auto;
    white-space: nowrap;
    overflow: visible;
    font-family: "Great Vibes";
    margin: auto;
}

/* Estilos para el texto con animación de escritura en hero */
#texto-h1 {
    color: white;
    font-size: 6rem;
    font-weight: auto;
    white-space: nowrap;
    overflow: visible;
    font-family: "Great Vibes";
    margin: auto;
}

#texto-h1::after {
    content: '|';
    animation: blink .7s step-end infinite;
    margin-left: 2px;
    color: white !important;
}

#texto-h1.finished::after {
    display: none;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.brand-symbol {
    background: linear-gradient(45deg, #fff, #e9ecef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-right: 15px;
}

/* Línea vertical antes del texto */
.brand-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, white, transparent);
    margin-right: 15px;
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-reserve {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--color-white) !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
}

.btn-reserve:hover::before {
    left: 100%;
}

/* HERO SECTION */
#hero {
    min-height: 90vh;
    background: linear-gradient(135deg,
            rgba(29, 28, 28, 0.50) 0%,
            rgba(29, 28, 28, 0.50) 50%,
            rgba(29, 28, 28, 0.50) 100%),
        url('../img/foto_epifania.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.hero-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-white), transparent);
    margin: 1.5rem auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-divider::before {
    content: '◊';
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1rem;
    animation: pulseAura 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: 2px solid var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--color-texto);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-texto);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* SERVICES SECTION */
#services {
    padding: 80px 0;
    background: #f5f5f5;
}

.services-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--color-black);
    font-weight: 400;
    padding: 0 20px;
}

.services-intro-text .highlight {
    font-weight: 600;
}

/* SWIPER CONTAINER */
.swiper-container {
    max-width: 800px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.text-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SWIPER PAGINATION */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(29, 28, 28, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--color-black);
    transform: scale(1.2);
}

/* ACTION BUTTONS */
.services-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-service-action {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    border: 2px solid var(--color-black);
    border-radius: 50px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-service-action.primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-service-action:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 28, 28, 0.2);
}

.btn-service-action.primary:hover {
    background: transparent;
    color: var(--color-black);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-intro-text {
        font-size: 1.4rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .testimonial-img {
        width: 120px;
        height: 120px;
    }

    .text-h3 {
        font-size: 1.1rem;
    }

    .btn-service-action {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .swiper-container {
        padding: 20px 0 60px;
    }
}

@media (max-width: 576px) {
    .testimonial-img {
        width: 100px;
        height: 100px;
    }

    .services-intro-text {
        font-size: 1.2rem;
    }

    .text-h3 {
        font-size: 1rem;
    }
}



/* BOTTOM NAVIGATION BAR */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #2c2c2c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    z-index: 999;
    display: none;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 10px;
    min-width: 0;
    flex: 1;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp-float,
    #chat_on {
        bottom: 86px;
        right: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .hero-content {
        padding: 0.8rem;
    }

    .hero-title {
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        margin-bottom: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero-divider {
        margin: 1rem auto;
        width: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .header {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .brand-symbol {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    .brand-divider {
        height: 30px;
        margin-right: 10px;
    }

    #texto-h1 {
        font-size: 3rem;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseAura {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(5deg);
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ==========================
    Other Page Sections
========================== */
.text-just {
    text-align: justify;
}

.img-perfil {
    max-height: 300px;
    border-radius: 60px;
}

.services-destacados img {
    height: 400px;
    width: 100%;
}

.texto-carrusel {
    color: #fff !important;
    font-weight: bold !important;
}

.bg-f-dark {
    background: linear-gradient(135deg, #a0e9ff 0%, #60e4d0 25%, #b199ff 55%, #eecfff 85%);
    opacity: 70%;
}

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    left: 15px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-services-destacados {
    text-align: justify;
}

.text-h1 {
    color: var(--heading-color);

}

#services-destacados .texto,
#services-ofrecidos .texto,
.texto-contacto {
    text-align: justify;
    font-size: 20px;
    font-family: var(--font-body);
}

.page-services .services .text-title-services {
    height: 40px;
    font-family: var(--font-title);
    font-weight: bold !important;
    color: var(--color-titulos);
}

#testimonials-page {
    max-height: 90px;
    background-color: #25d366;
}

.page-services .text-services-ofrecidos {
    font-family: var(--font-body);
    color: var(--color-texto);
}


/* ============================
    FORMULARIO DE CONTACTO
============================ */
.contact-form {
    background-color: #f8f9fa;
    max-width: 850px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4154f1;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.custom-input {
    border-radius: 0.75rem;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.custom-input:focus {
    border-color: #4154f1;
    box-shadow: 0 0 0 0.2rem rgba(65, 84, 241, 0.15);
    outline: none;
}

.contact-form textarea.custom-input {
    resize: vertical;
    min-height: 140px;
}

.contact-form .input-group-text {
    border-radius: 0.75rem 0 0 0.75rem;
    border-right: none;
    background-color: #fff;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.input-group .custom-input {
    border-left: none;
    border-radius: 0 0.75rem 0.75rem 0;
}

.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #4154f1, #6576f7);
    border: none;
    padding: 0.75rem 2.5rem;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(65, 84, 241, 0.25);
}

.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #3242f0, #5060f5);
    transform: translateY(-2px);
}

input[type="number"].no-spinner::-webkit-inner-spin-button,
input[type="number"].no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].no-spinner {
    -moz-appearance: textfield;
    appearance: textfield;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 2rem 1.2rem;
    }

    .contact-form h2 {
        font-size: 1.6rem;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

#sect-testimonios .testimonials .testimonios-epifania {
    padding-top: 0%;
    margin-top: 0%;
    padding-bottom: 20px;
    width: 100%;
}

#sect-testimonios .testimonials .testimonios-epifania #tittle-test {
    padding-bottom: 0%;
}

#sect-testimonios .testimonials .testimonios-epifania .cont-testimonials {
    padding-top: 0%;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item {
    background-color: #f5f5f5;
    box-sizing: content-box;
    padding: 5px;
    margin: 0px 0px;
    position: relative;
    height: 300px !important;
    border-radius: 20px;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .ts-head {
    margin: 10px;
}


#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .testimonial-img {
    width: 100%;
    border-radius: 50%;
    padding: 0%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border: 10px;
    height: 100%;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0%;
    text-align: start;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .stars {
    text-align: start;
    margin: 0%;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .quote-icon-left,
#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item p {
    font-style: italic;
    padding-top: 0%;
    margin: 0%;
    text-align: justify;
}

#sect-testimonios .testimonials .testimonios-epifania .testimonial-item .ts-cont {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    height: 210px;
    margin: 0px;
    border-radius: 10px;
    font-weight: var(--font-body);

}

#sect-testimonios .testimonials .testimonios-epifania .swiper-wrapper {
    height: auto;
}

#sect-testimonios .testimonials .testimonios-epifania .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#sect-testimonios .testimonials .testimonios-epifania .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

#sect-testimonios .testimonials .testimonios-epifania .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}


@media (max-width: 767px) {
    #sect-testimonios .testimonials .testimonios-epifania {
        padding: 0 1rem 2rem 1rem;
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-item {
        height: 460px !important;
        padding: 0.5rem;
        border-radius: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        background-color: #f5f5f5;
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-item .ts-head {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-img {
        width: 130px !important;
        height: 130px !important;
        object-fit: cover;
        border-radius: 50%;
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-item h3 {
        font-size: 20px;
        margin: 0 0 0.25rem 0;
        text-align: left;
    }

    #sect-testimonios .testimonials .testimonios-epifania .stars {
        font-size: 1rem;
        text-align: left;
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-item .ts-cont {
        border-radius: 0.75rem;
        padding: 0.75rem;
        height: auto;
        font-weight: var(--font-body);
    }

    #sect-testimonios .testimonials .testimonios-epifania .testimonial-item p {
        font-size: 1rem;
        text-align: justify;
        font-style: italic;
        margin: 0;
    }
}


@media (max-width: 768px) {
    .llamado-espiritual {
        margin-top: 18px !important;
        border-radius: 1rem;
        margin-bottom: 3rem;
    }


    .llamado-box p {
        font-size: 1.2rem !important;
    }

    .btn-conectar {
        background-color: #25D366;
        color: #fff;
        border: none;
    }

    .btn-conectar:hover {
        background-color: #1ebc59;
    }

    .btn-servicios:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

}

.index-page {
    background: var(--fondo-epifania);
}

.index-page .main {
    position: relative;
    z-index: 1;
}

.index-page .swiper-slide {
    background-color: #f5f5f5;
    border-radius: 20px;
}

.index-page .swiper-slide .testimonial-img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}



/*--------------------------------------------------------------
# Galery Section
--------------------------------------------------------------*/
.index-page .portfolio .portfolio-item img {
    cursor: pointer;
}

.index-page .galery .gallery-wrapper .gallery-container img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 10px;
}

.galery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.galery .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.galery .card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.galery .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.galery .card img:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .galery .card img {
        height: 200px;
    }
}

.gallery-container {
    min-height: 200px;
    height: auto !important;
    overflow: visible !important;
}

.pagination {
    text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.sect-cont .info-wrap {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
}

.sect-cont .info-wrap:hover {
    transform: translateY(-3px);
}

/* Efectos hover para iconos de contacto */
.sect-cont .info-item i {
    transition: all 0.3s ease;
}

.sect-cont .info-item:hover i {
    transform: scale(1.1);
    color: #8B7EC8 !important;
}

/* Estilos para redes sociales */
.sect-cont .social-hover {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.sect-cont .social-hover:hover {
    transform: translateY(-3px) scale(1.02);
}

.sect-cont .instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sect-cont .social-section .fs-2 {
        font-size: 1.5rem !important;
    }

    .sect-cont .social-hover {
        padding: 1rem !important;
    }
}


/* Estilos de las card tipos de servicios en .index-page */

@media (min-width: 768px) {
    .card-tipos .container .row {
        margin-left: 100px;
        margin-right: 100px;
    }
}

.card-tipos .titulo-type {
    color: var(--color-titulos);
    font-weight: bold;
    font-family: var(--font-title);
    font-size: 26px;
}

.card-tipos .card {
    height: 27rem;
}

@media (max-width:768px) {
    .card-tipos .card {
        height: 29rem;
    }
}

.index-page .card-tipos .card {
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.index-page .card-tipos .card:hover {
    top: -5px;
}

.card-tipos .testimonial-img {
    width: 300px;
    height: 100px;
}

.card-tipos .texto-type {
    font-size: 0.95rem;
    color: var(--color-texto);
    text-align: justify;
    line-height: 1.75 !important;
    font-family: var(--font-body);
}


.index-page .destacados .swiper-wrapper .swiper-slide {
    height: 527px !important;
}


.index-page .blog-articles .swiper-wrapper .swiper-slide {
    height: 380px !important;
}

.index-page .blog-articles .card-title {
    font-family: var(--font-title);
    font-weight: bold;
}

.index-page .blog-articles .card-text {
    font-family: var(--font-body);
}

.index-page .section-1 .text-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7b38d8;
    text-align: center;
    font-family: var(--font-title);
}

.index-page .section-1 .text-p {
    font-size: 1.25rem;
    color: #15042c;
    text-align: justify;
}

.index-page .blog-articles .card-img-top {
    height: 13rem;
}

.index-page .blog-articles .swiper-pagination {
    margin-top: 50px !important;
    text-align: center;
}

.index-page .blog-articles .swiper-pagination-bullet {
    background: #7a5e9a !important;
    border: 1px solid #7a5e9a !important;
    opacity: 0.6;
}

.index-page .blog-articles .swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
}

.swiper-pagination-bullet {
    background: #7a5e9a !important;
    border: 1px solid #7a5e9a !important;
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
}


/* estilos hero .texto */
.version-2 {
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 20% auto 0 auto;
    padding: 15px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    text-align: center;
}

.version-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    animation: particleFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.version-2 .texto-principal {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #21024d;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}



@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .version-2 {
        padding: 25px;
        margin-top: 40%;

    }

    .version-2 .texto-principal {
        font-size: 1.2rem !important;
        line-height: 1.6;
        color: #250257 !important;

    }
}



.destacados .testimonials .swiper-slide .text-h3 {
    font-weight: bold !important;
}

.page-reserve .text-h2 {
    color: var(--color-titulos);
}

.page-reserve .text-p {
    color: var(--color-texto);
}

/* Solo CSS mínimo necesario */
.swiper-slide.d-flex {
    height: auto !important;
    align-items: stretch !important;
}

.tipos-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tipos-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}