/* ========================================
   PIKAROS CUSTOM STYLES - BOTONES FLOTANTES
   ======================================== */

/* Contenedor principal de botones flotantes */
.pikaros-floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

/* Botón individual */
.pikaros-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto hover */
.pikaros-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Efecto de pulso */
.pikaros-floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pikaros-pulse 2s infinite;
}

@keyframes pikaros-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Colores específicos por plataforma */
.pikaros-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.pikaros-btn-messenger {
    background: linear-gradient(135deg, #006AFF, #0084FF);
    color: white;
}

.pikaros-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
}

.pikaros-btn-instagram {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
    color: white;
}

/* Iconos */
.pikaros-floating-btn i {
    font-size: 24px;
    z-index: 1;
    position: relative;
}

/* Tooltip */
.pikaros-floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.pikaros-floating-btn::before {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.pikaros-floating-btn:hover::after,
.pikaros-floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pikaros-floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .pikaros-floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .pikaros-floating-btn i {
        font-size: 20px;
    }
    
    .pikaros-floating-btn::after {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .pikaros-floating-btn::before {
        right: 50px;
    }
}

@media (max-width: 480px) {
    .pikaros-floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .pikaros-floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .pikaros-floating-btn i {
        font-size: 18px;
    }
}

/* Animación de entrada */
.pikaros-floating-buttons.animate-in {
    animation: pikaros-slide-in 0.5s ease-out;
}

@keyframes pikaros-slide-in {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Botón principal de WhatsApp (más prominente) - Orden visual */
.pikaros-btn-messenger {
    order: 1;
    animation-delay: 0.1s;
}

.pikaros-btn-whatsapp {
    order: 2;
    animation-delay: 0.2s;
}

/* Efecto de rebote en hover para WhatsApp */
.pikaros-btn-whatsapp:hover {
    animation: pikaros-bounce 0.6s ease;
}

@keyframes pikaros-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-2px);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .pikaros-floating-btn::before,
    .pikaros-floating-btn,
    .pikaros-floating-buttons {
        animation: none;
        transition: none;
    }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .pikaros-floating-btn::after {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }
    
    .pikaros-floating-btn::before {
        border-left-color: rgba(255, 255, 255, 0.9);
    }
}

/* Ajuste de tamaño y posición del botón scroll_up para alinearlo con botones flotantes */
/* Tamaño: 60px para coincidir con los botones flotantes */
/* Position: Gap consistente de 12px como los otros botones */
#scroll_up {
    width: 60px !important;
    height: 60px !important;
    line-height: 57px !important;
    bottom: 164px !important;  /* 20px (bottom) + 120px (2 botones) + 12px (gap) + 12px (gap scroll) = 164px */
    right: 20px !important;
    z-index: 21 !important;
}

/* Ajustes para tablets */
@media (max-width: 768px) {
    #scroll_up {
        width: 50px !important;
        height: 50px !important;
        line-height: 47px !important;
        bottom: 132px !important;  /* 15px + 100px (2×50px) + 10px + 10px = 132px */
        right: 15px !important;
    }
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    #scroll_up {
        width: 45px !important;
        height: 45px !important;
        line-height: 42px !important;
        bottom: 118px !important;  /* 10px + 90px (2×45px) + 8px + 10px = 118px */
        right: 10px !important;
    }
}

/* ========================================
   PIKAROS PRICING CARDS RESPONSIVE LAYOUT
   ======================================== */

/* Variables CSS para consistencia */
:root {
    --pikaros-primary: #fa9db7;
    --pikaros-gap: 20px;
    --pikaros-shadow: 0 4px 15px rgba(250, 157, 183, 0.3);
    --pikaros-shadow-hover: 0 6px 20px rgba(250, 157, 183, 0.4);
}

/* Contenedor principal de tarjetas */
.elementor-section.elementor-element-8cd88fd {
    --section: &;
}

.elementor-section.elementor-element-8cd88fd .elementor-container,
.elementor-section.elementor-element-8cd88fd .elementor-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: var(--pikaros-gap) !important;
    align-items: stretch !important;
}

.elementor-section.elementor-element-8cd88fd .elementor-container {
    justify-content: center !important;
}

.elementor-section.elementor-element-8cd88fd .elementor-row {
    width: 100% !important;
}

/* ========================================
   TARJETAS DE PRECIOS - LAYOUT SIMPLIFICADO
   ======================================== */

/* Row principal - alturas uniformes automáticas */
.elementor-section.elementor-element-8cd88fd .elementor-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 20px !important;
}

/* Clase para tarjetas de precios */
.pikaros-card-item {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 calc(33.333% - 14px) !important;
    width: calc(33.333% - 14px) !important;
    margin: 0 !important;
}

/* Responsive breakpoints para tarjetas */
@media (max-width: 1024px) {
    .pikaros-card-item {
        flex: 0 0 calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
    }
}

@media (max-width: 767px) {
    .pikaros-card-item {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

/* Altura uniforme - Flexbox chain para tarjetas */
.pikaros-card-item .elementor-column-wrap,
.pikaros-card-item .elementor-widget-wrap,
.pikaros-card-item .wgl-infobox,
.pikaros-card-item .elementor-widget,
.pikaros-card-item .elementor-widget-container,
.pikaros-card-item .wgl-infobox_wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Imagen - altura fija, centrada y simplificado */
.pikaros-card-item .wgl-infobox-icon_wrapper {
    flex-shrink: 0 !important;
    height: 180px !important;
    text-align: center !important;
    overflow: hidden !important;
    margin-top: 20px !important;
}

.pikaros-card-item .wgl-image-box_img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.pikaros-card-item .wgl-image-box_img img {
    max-width: 100% !important;
    max-height: 180px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Contenido - centrado horizontalmente */
.pikaros-card-item .wgl-infobox-content_wrapper {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
}

/* Texto - centrado */
.pikaros-card-item .wgl-infobox_content {
    text-align: center !important;
    margin: 10px 0 !important;
    padding: 0 30px !important;
}

/* Título - centrado */
.pikaros-card-item .wgl-infobox-title_wrapper {
    text-align: center !important;
    padding: 0 20px !important;
}

/* Botón - centrado y siempre abajo */
.pikaros-card-item .wgl-infobox-button_wrapper {
    margin-top: auto !important;
    flex-shrink: 0 !important;
    padding-bottom: 30px !important;
    text-align: center !important;
}

/* Responsive - ajuste de altura de imagen */
@media (max-width: 1024px) {
    .pikaros-card-item .wgl-infobox-icon_wrapper {
        height: 150px !important;
    }
}

@media (max-width: 767px) {
    .pikaros-card-item .wgl-infobox-icon_wrapper {
        height: 140px !important;
    }
}

/* ========================================
   PIKAROS CARD COLORS - SIMPLIFICADO
   ======================================== */

/* Card Pink */
.pikaros-card-pink > .wgl-infobox {
    background-color:  rgba(250, 157, 183, 0.25) !important;
    border-radius: 25px !important;
}

.pikaros-card-pink .inner-dashed-border {
    stroke: #fa9db7 !important;
}

/* Card Blue */
.pikaros-card-blue > .wgl-infobox {
    background-color: rgba(69, 179, 223, 0.5) !important;
    border-radius: 25px !important;
}

.pikaros-card-blue .inner-dashed-border {
    stroke: #45b3df !important;
}

/* Card Yellow */
.pikaros-card-yellow > .wgl-infobox {
    background-color: rgba(253, 197, 99, 0.5) !important;
    border-radius: 25px !important;
}

.pikaros-card-yellow .inner-dashed-border {
    stroke: #fdc563 !important;
}


/* CTA optimizado para ventas */
.pikaros-card-item .wgl-infobox_button {
    background: var(--pikaros-primary) !important;
    color: white !important;
    border: 2px solid var(--pikaros-primary) !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: var(--pikaros-shadow) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.pikaros-card-item .wgl-infobox_button:hover {
    background: white !important;
    color: var(--pikaros-primary) !important;
    border-color: var(--pikaros-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--pikaros-shadow-hover) !important;
}

/* Clase para centrar contenido */
.pikaros-center-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 80px !important;
    width: 100% !important;
    margin-top: 40px !important; /* Espacio superior para separar de las tarjetas */
}

.pikaros-center-content .elementor-column {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.pikaros-center-content .elementor-column-wrap {
    margin: 0 !important;
    padding: 0 !important;
}

.pikaros-center-content .elementor-widget-wrap {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.pikaros-center-content .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

/* Sección "Aparta tu fecha" centrada */
.elementor-section.elementor-element-8cd88fd + .elementor-section .elementor-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 80px !important;
}

/* ========================================
   PIKAROS TESTIMONIALS SIMPLIFIED
   ======================================== */

/* Variables para colores de testimonios */
:root {
    --testimonial-pink: #fa9db7;
    --testimonial-blue: #64bee6;
    --testimonial-yellow: #ffdc64;
    --testimonial-text: #333;
    --testimonial-author: #12265a;
}

/* Aplicar colores usando clases específicas para evitar conflictos con carousel infinito */
.wgl-testimonials .testimonials__item-wrap.testimonial-color-pink .testimonials__quote {
    background-color: var(--testimonial-pink) !important; /* Rosa */
}

.wgl-testimonials .testimonials__item-wrap.testimonial-color-blue .testimonials__quote {
    background-color: var(--testimonial-blue) !important; /* Azul */
}

.wgl-testimonials .testimonials__item-wrap.testimonial-color-yellow .testimonials__quote {
    background-color: var(--testimonial-yellow) !important; /* Amarillo */
}

/* Asegurar que todas las tarjetas tengan el mismo tamaño */
.wgl-testimonials .testimonials__item-wrap {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    margin-right: 2%;
    transition: 0.4s;
}

.wgl-testimonials .testimonials__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 35px 0 0;
    border-radius: 15px;
    transform: translate(0);
    transition: inherit;
    overflow: hidden;
    background: #ffffff;
}

/* Mantener el diseño actual donde el nombre está debajo */
.wgl-testimonials .testimonials__content-wrap {
    flex: 1;
    margin-bottom: 10px;
    transition: inherit;
}

.wgl-testimonials .testimonials__quote {
    position: relative;
    z-index: 0;
    font-size: 20px;
    line-height: 1.8;
    transition: inherit;
    padding: 30px;
    border-radius: 15px;
    color: var(--testimonial-text);
}

.wgl-testimonials .testimonials__meta-wrap {
    margin-top: auto;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: inherit;
    padding-left: 20px;
}

.wgl-testimonials .testimonials__name-wrap {
    display: flex;
    flex-direction: column;
    transition: inherit;
}

.wgl-testimonials .testimonials__name {
    font-size: 20px;
    line-height: 1.2;
    transition: inherit;
    color: var(--testimonial-author);
    margin: 0 0 5px 0;
}

.wgl-testimonials .testimonials__position {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: var(--testimonial-author);
    opacity: 0.8;
}

/* Comillas decorativas */
.wgl-testimonials.add_quote_icon .testimonials__quote:after {
    content: "\201C";
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: 16px;
    left: 28px;
    font-size: 150px;
    line-height: 1;
    text-align: center;
    transition: inherit;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

/* Responsive - mantener la funcionalidad del carousel */
@media (max-width: 1024px) {
    .wgl-testimonials .testimonials__item-wrap {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .wgl-testimonials .testimonials__item-wrap {
        min-height: 250px;
    }
    
    .wgl-testimonials .testimonials__meta-wrap {
        padding-left: 10px;
    }
}

/* Tarjetas de Marketing Simplificadas */
.marketing-cards-section {
    padding: 60px 0;
}

.marketing-cards-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.marketing-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    position: relative;
    z-index: 10;
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Bordes punteados internos con colores específicos */
.card-blue::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed #87CEFA;
    border-radius: 10px;
    pointer-events: none;
}

.card-pink::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed #FFB6C1;
    border-radius: 10px;
    pointer-events: none;
}

.card-yellow::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed #FFDDAA;
    border-radius: 10px;
    pointer-events: none;
}

/* Iconos circulares */
.card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.card-icon.blue {
    background-color: #87CEFA;
}

.card-icon.pink {
    background-color: #FFB6C1;
}

.card-icon.yellow {
    background-color: #FFDDAA;
}

/* Contenido de texto */
.card-content {
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #1A237E;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.card-description {
    font-size: 14px;
    color: #3C3C3C;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .marketing-cards-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .marketing-card {
        flex: 0 0 calc(50% - 10px);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .marketing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .marketing-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .marketing-cards-section {
        padding: 40px 0;
    }
    
    .marketing-cards-container {
        padding: 0 15px;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .marketing-card {
        flex: none;
        width: 100%;
        max-width: 500px;
        padding: 30px;
        gap: 15px;
        min-height: 100px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 13px;
    }
}

/* ========================================
   PIKAROS FOOTER SIMPLIFICADO
   ======================================== */

/* Bloques individuales del footer */
.pikaros-footer-block {
    flex: 1;
    min-width: 280px;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}

.pikaros-footer-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Colores de bloques */
.block-social {
    background: linear-gradient(135deg, #FFB347, #FF8C42);
}

.block-schedule {
    background: linear-gradient(135deg, #fa9db7, #FF6B9D);
}

.block-location {
    background: linear-gradient(135deg, #64bee6, #4A9FD8);
}

/* Contenido de bloques */
.block-content {
    color: white;
}

.block-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Iconos de redes sociales - usando clases originales de Elementor */
.pikaros-footer-block .elementor-social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pikaros-footer-block .elementor-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pikaros-footer-block .elementor-icon:hover {
    background: white;
    transform: scale(1.1);
}

/* Colores originales de las redes sociales */
.pikaros-footer-block .elementor-social-icon-facebook-f {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.pikaros-footer-block .elementor-social-icon-instagram {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
}

.pikaros-footer-block .elementor-social-icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.pikaros-footer-block .elementor-social-icon-facebook-f:hover {
    color: #1877F2;
}

.pikaros-footer-block .elementor-social-icon-instagram:hover {
    color: #E4405F;
}

.pikaros-footer-block .elementor-social-icon-whatsapp:hover {
    color: #25D366;
}

/* Texto de horarios */
.schedule-hours {
    margin: 20px 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.schedule-item .hours {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.schedule-quote {
    font-size: 14px;
    font-style: italic;
    margin: 15px 0 10px 0;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.schedule-text {
    font-size: 18px;
    margin: 10px 0;
    color: white;
    font-weight: 600;
}

/* Botón de agendar cita */
.schedule-button-wrapper {
    margin: 20px 0 0 0;
    text-align: center;
}

.schedule-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 30px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-button:hover {
    background: white;
    color: #fa9db7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.schedule-button .button-content-wrapper {
    position: relative;
}

.schedule-button .button-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-button:hover .button-text {
    color: #fa9db7;
}

.schedule-cta {
    font-size: 22px;
    font-weight: 900;
    margin: 15px 0 0 0;
    color: white;
    text-transform: uppercase;
}

/* Texto de ubicación */
.location-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 500;
}

/* Imagen del mapa */
.map-link {
    display: block;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: scale(1.05);
}

.map-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

/* Instrucción del mapa */
.map-instruction {
    font-size: 14px;
    font-style: italic;
    margin: 15px 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pikaros-footer-block {
        min-width: 250px;
        padding: 35px 25px;
        margin: 0 5px;
    }
    
    .block-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .pikaros-footer-block {
        min-width: 100%;
        padding: 30px 20px;
        margin: 10px 0;
    }
    
    .block-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .pikaros-footer-block .elementor-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .schedule-text {
        font-size: 16px;
    }
    
    .schedule-item .day,
    .schedule-item .hours {
        font-size: 14px;
    }
    
    .schedule-quote {
        font-size: 13px;
    }
    
    .schedule-button {
        padding: 10px 20px;
    }
    
    .schedule-button .button-text {
        font-size: 14px;
    }
    
    .schedule-cta {
        font-size: 20px;
    }
    
    .location-text {
        font-size: 15px;
    }
    
    .map-instruction {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pikaros-footer-block {
        padding: 25px 15px;
        margin: 8px 0;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .pikaros-footer-block .elementor-social-icons-wrapper {
        gap: 12px;
    }
    
    .pikaros-footer-block .elementor-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .schedule-item .day,
    .schedule-item .hours {
        font-size: 13px;
    }
    
    .schedule-quote {
        font-size: 12px;
    }
    
    .schedule-button {
        padding: 8px 16px;
    }
    
    .schedule-button .button-text {
        font-size: 13px;
    }
    
    .schedule-cta {
        font-size: 18px;
    }
    
    .map-instruction {
        font-size: 12px;
    }
}