/* ==========================================
            CSS Styles
========================================== */
.b-example-divider {
    height: 2rem;
    background-color: var(--silver-light);
    margin: 0.2rem 0;
}

/* ==========================================
            Tipo de letra y estilo.
========================================== */
h2,
h5 {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--secondary-color);
}

/* ==========================================
        Navbar Styles - Metallic Silver
========================================== */
.navbar-modern {
    background: linear-gradient(145deg, #f8f8f8 0%, #d8d8d8 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-modern.scrolled {
    background: linear-gradient(145deg, #e0e0e0 0%, #b0b0b0 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand-modern {
    font-family: 'Cuprum', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand-modern:hover {
    color: var(--primary-color);
}

.navbar-brand-modern img {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.nav-link-modern {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.nav-link-modern:hover,
.nav-link-modern:focus {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link-modern:hover::before {
    width: 70%;
}

.nav-link-modern.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link-modern.active::before {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 139, 0.7);
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 139, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Logo animation */
.logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: slide-glow 3s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slide-glow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive adjustments for Navbar */
@media (max-width: 991px) {
    .navbar-brand-modern img {
        height: 50px;
    }

    .navbar-brand-modern span {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand-modern img {
        height: 45px;
    }

    .navbar-brand-modern span {
        font-size: 1.2rem;
    }

    .nav-link-modern {
        padding: 0.75rem 0;
        text-align: center;
    }

    .nav-link-modern::before {
        left: 50%;
    }

    .nav-link-modern:hover::before,
    .nav-link-modern.active::before {
        width: 50%;
    }
}

/* =======================================
Footer Styles - Metallic Silver (Full Width)
======================================= */
.footer-metallic {
    background: linear-gradient(145deg, #707070 0%, #505050 100%);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3),
        0 -5px 20px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    padding-top: 60px;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    border-top: 2px solid #404040;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-metallic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.footer-logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    /* Cambiado a azul rey para el efecto de sombra */
    filter: drop-shadow(0 0 15px rgba(0, 0, 139, 0.7));
    transform: scale(1.03);
}

.footer-metallic h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cuprum', sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-metallic h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    /* Cambiado a azul rey */
    background: #00008B;
    /* Cambiado a azul rey para el efecto de sombra */
    box-shadow: 0 0 10px #00008B;
}

.footer-metallic p,
.footer-metallic small {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-metallic ul {
    padding-left: 0;
    list-style: none;
}

.footer-metallic ul li {
    margin-bottom: 8px;
}

.footer-metallic ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-metallic ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    /* Cambiado a azul rey */
    background: #00008B;
    transition: width 0.3s ease;
}

.footer-metallic ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-metallic ul li a:hover::before {
    width: 100%;
}

.social-icon {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    /* Cambiado a azul rey */
    color: #00008B;
    transform: translateY(-5px) scale(1.1);
    /* Cambiado a azul rey para el efecto de sombra */
    text-shadow: 0 0 15px rgba(0, 0, 139, 0.7);
}

.footer-map {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #606060;
    transition: all 0.3s ease;
}

.footer-map:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    /* Cambiado a azul rey */
    border-color: #00008B;
}

.footer-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-metallic .border-top {
    border-color: #606060 !important;
    padding-top: 20px;
    margin-top: 30px;
}

.contact-info i {
    /* Cambiado a azul rey */
    color: #00008B;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 768px) {

    .footer-metallic h5,
    .footer-metallic p,
    .footer-metallic ul,
    .footer-metallic ul li,
    .footer-metallic small {
        text-align: center;
    }

    .footer-metallic h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }

    .social-icon {
        font-size: 1.6rem;
        margin: 0 8px;
    }

    .footer-map {
        padding-bottom: 100%;
    }
}

/* =======================================
Estilos del boton flotante de Whatsapp
======================================= */
/* Botón flotante principal */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark-green));
    color: #FFF;
    border-radius: 50%;
    font-size: 36px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: pulse 2s infinite;
    border: 3px solid white;
    cursor: pointer;
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, var(--whatsapp-dark-green), var(--whatsapp-green));
}

/* Efecto de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Notificación */
.whatsapp-notification {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF3B30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-centered {
    background: white;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark-green));
    color: white;
    padding: 18px 20px;
    border-bottom: none;
    position: relative;
}

.modal-header h5 {
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0;
}

.modal-header h5 i {
    margin-right: 10px;
    font-size: 1.3em;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    background-color: white;
    color: var(--whatsapp-dark-green);
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-option:hover {
    background-color: var(--whatsapp-green);
    color: white !important;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    border-color: var(--whatsapp-green);
}

.whatsapp-option i {
    font-size: 24px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.whatsapp-option:hover i {
    color: white !important;
    transform: scale(1.1);
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-notification {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .whatsapp-option {
        padding: 10px 15px;
    }
}

/* =======================================
        Estilos del Carousel.
======================================= */
/* Estilos mejorados para el carousel */
.carousel {
    /* margin-top: 85px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-caption {
    background: rgba(29, 53, 87, 0.7);
    border-radius: 10px;
    padding: 20px;
    bottom: 20%;
    left: 10%;
    right: 10%;
    color: #fff;
    /* Asegura que el texto sea visible */
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Efecto hover para los controles */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 40vh;
    }

    .carousel-caption {
        bottom: 10%;
        padding: 10px;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel {
        margin-top: 90px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Modificación para dispositivos móviles en orientación vertical */
@media (max-width: 576px) and (orientation: portrait) {
    .carousel {
        margin-top: 60px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-item img {
        height: 30vh;
    }

    .carousel-caption {
        bottom: 5%;
        padding: 8px;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 915px) and (orientation: landscape) {
    body {
        padding-top: 90px;
    }

    .carousel {
        margin-top: -15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-item img {
        height: 50vh;
    }

    .carousel-caption {
        bottom: 10%;
        font-size: 0.9rem;

    }

    .carousel-caption h5 {
        font-size: 1.8rem;
    }
}

/* Estilos del footer */
footer a:hover {
    color: var(--primary-color);
}

.footer-logo {
    width: 160px;
    height: auto;
}

.category-card img {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: brightness(0.9);
}

.category-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.category-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.brand-logo {
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.benefit-icon {
    transition: transform 0.3s ease-out;
}

.col-md-4:hover .benefit-icon {
    transform: translateY(-8px);
}

/* Para la tarjeta completa */
.col-md-4.text-center {
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    padding: 20px;
}

.col-md-4.text-center:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

/* =======================================
    Estilo de anuncio de bienvenida.
======================================= */
/* Sección de Bienvenida y nuestros servicios */
.welcome-section {
    background: linear-gradient(135deg, #1d3557, #2f4eb2);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.welcome-section .container {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.welcome-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-warning {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sección de Servicios Mejorada */
.services-section {
    padding: 5rem 0;
    background-color: #f0f4ff;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(47, 78, 178, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    transition: all 0.3s ease;
}

.service-card:hover::after {
    height: 6px;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.2rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* =======================================
        Carousel de carts.
======================================= */
/* Estilos del carrusel de carts */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.swiper {
    width: 90%;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.card {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

@media (min-width: 768px) {
    .swiper {
        width: 85%;
        height: 220px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .swiper {
        width: 80%;
        height: 230px;
    }
}

/* =======================================
    Estilos de la seccion de testimonios.
======================================= */
/* Sección de Testimonios */
.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color-two);
    /* Borde de acento */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-rating .bi-star-fill {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Testimonios */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    font-family: serif;
    font-size: 5rem;
    color: var(--primary-color-two);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}