 #whatsapp {
    position: fixed !important;
    bottom: 20px;
    right:20px;
    z-index: 9;
 }

 svg {
    width: 80px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
 }
 #whatsapp circle {
    fill: #25d366;
 }
 path {
    fill: #fff;
 }

 .arrow_left, .arrow_right{
    font-size: 40px;
    background: #69CAD3;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
 }

 .arrow_left:hover, .arrow_right:hover{
    background: #69CAD3;
    border-radius: 50px;
    color: #fff;
 }

#btnTop {
  position: fixed;
  bottom: 20px;
  left: 20px; /* 👈 lo pone del lado izquierdo */
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #F08244;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}
#btnTop:hover {
  background: #676B79;
  transform: translateY(-3px);
}
#btnTop.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive: más chico en móvil */
@media (max-width:768px){
  #btnTop {
    width: 42px;
    height: 42px;
    font-size: 16px;
    bottom: 16px;
    left: 16px;
  }
}

/* ***********************************************************************************************************  */

/* Tabla de horarios - Actualizada */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-table thead {
    background: #2d2d2d;
    color: white;
}

.schedule-table th {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.schedule-table th:first-child {
    text-align: left;
    padding-left: 20px;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 18px 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.schedule-table td.time-cell {
    text-align: left;
    font-weight: 600;
    color: #2d2d2d;
    padding-left: 20px;
    white-space: nowrap;
}

.schedule-table .class-name {
    display: inline-block;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.schedule-table .class-name:hover {
    background: #C0623A;
    color: white;
    transform: scale(1.05);
}

.schedule-table .class-empty {
    color: #ccc;
}

/* Fila separadora */
.schedule-table tr.schedule-separator td {
    padding: 0;
    height: 20px;
    background: #A67C52;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-table {
        font-size: 12px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 12px 8px;
    }
    
    .schedule-table th:first-child,
    .schedule-table td.time-cell {
        padding-left: 12px;
    }
    
    .schedule-table .class-name {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .schedule-table {
        font-size: 11px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 10px 5px;
    }
    
    .schedule-table .class-name {
        padding: 5px 8px;
        font-size: 11px;
    }
}
/* ***********************************************************************************************************  */
/* Banner Reserva - SIN ::before */
    .banner-reserva {
        position: relative;
        min-height: 250px;
        margin: 0 0 60px 0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.75); /* Oscurece solo un poco la imagen */
    }

    .banner-reserva .container {
        position: relative;
        z-index: 3;
        padding: 50px 20px;
    }

    .banner-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
        background: linear-gradient(
            to right,
            rgba(60, 40, 30, 0.85) 0%,
            rgba(60, 40, 30, 0.6) 50%,
            rgba(60, 40, 30, 0.3) 80%,
            transparent 100%
        );
        padding: 30px;
        border-radius: 10px;
    }

    .banner-text {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        min-width: 280px;
    }

    .banner-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C0623A;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .banner-icon svg {
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .banner-info {
        flex: 1;
    }

    .banner-info h2 {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
        line-height: 1.3;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

    .banner-info p {
        font-size: 15px;
        color: #ffffff;
        line-height: 1.6;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
        max-width: 550px;
    }

    .banner-cta {
        flex-shrink: 0;
    }

    .btn-reserva {
        display: inline-block;
        padding: 16px 35px;
        background: #B8382C;
        color: white;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(184, 56, 44, 0.5);
        white-space: nowrap;
    }

    .btn-reserva:hover {
        background: #9a2f25;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(184, 56, 44, 0.6);
    }

    /* Tablet */
    @media (max-width: 1024px) and (min-width: 769px) {
        .banner-reserva {
            min-height: 220px;
        }
        
        .banner-reserva .container {
            padding: 40px 20px;
        }
        
        .banner-content {
            padding: 25px;
        }
        
        .banner-info h2 {
            font-size: 24px;
        }
        
        .banner-info p {
            font-size: 14px;
        }
        
        .banner-icon {
            width: 60px;
            height: 60px;
        }
        
        .banner-icon svg {
            width: 35px;
            height: 35px;
        }
    }

    /* Móvil */
    @media (max-width: 768px) {
        .banner-reserva {
            min-height: auto;
            margin: 30px 0 40px 0;
        }
        
        .banner-image img {
            filter: brightness(0.65); /* Más oscuro en móvil para mejor contraste */
        }
        
        .banner-reserva .container {
            padding: 35px 20px;
        }
        
        .banner-content {
            flex-direction: column;
            text-align: center;
            gap: 25px;
            background: rgba(60, 40, 30, 0.85); /* Fondo más sólido en móvil */
            padding: 30px 20px;
        }
        
        .banner-text {
            flex-direction: column;
            text-align: center;
            width: 100%;
        }
        
        .banner-icon {
            width: 60px;
            height: 60px;
        }
        
        .banner-icon svg {
            width: 35px;
            height: 35px;
        }
        
        .banner-info {
            width: 100%;
        }
        
        .banner-info h2 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .banner-info p {
            font-size: 14px;
            max-width: 100%;
        }
        
        .btn-reserva {
            width: 100%;
            max-width: 300px;
            padding: 14px 30px;
            font-size: 14px;
        }
    }

    /* Móvil pequeño */
    @media (max-width: 480px) {
        .banner-reserva .container {
            padding: 30px 15px;
        }
        
        .banner-content {
            padding: 25px 15px;
        }
        
        .banner-info h2 {
            font-size: 20px;
        }
        
        .banner-info p {
            font-size: 13px;
        }
        
        .banner-icon {
            width: 50px;
            height: 50px;
        }
        
        .banner-icon svg {
            width: 30px;
            height: 30px;
        }
    }
/* ***********************************************************************************************************  */
 /* Sección de Cursos y Talleres */
    .cursos-section {
        padding: 80px 0 0 0;
        background: #FFFFFF;
    }

    /* Beneficios Superiores */
    .cursos-beneficios {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    .curso-beneficio {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .beneficio-icon-curso {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C0623A;
    }

    .beneficio-text-curso h4 {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .beneficio-text-curso p {
        font-size: 13px;
        color: #666;
    }

    /* Título de Sección Cursos */
    .section-title-cursos {
        font-size: 32px;
        font-weight: 700;
        color: #B8382C;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    /* Grid de Cursos */
    .cursos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    /* Tarjeta de Curso */
    .curso-card {
        position: relative;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .curso-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Badge de Curso */
    .curso-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #28a745;
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .curso-badge-popular {
        background: #ff9800;
    }

    .curso-badge-destacado {
        background: #B8382C;
    }

    /* Imagen del Curso */
    .curso-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .curso-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .curso-card:hover .curso-image img {
        transform: scale(1.1);
    }

    /* Contenido del Curso */
    .curso-content {
        padding: 25px;
    }

    .curso-content h3 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .curso-content > p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Detalles del Curso */
    .curso-details {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .curso-detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #666;
    }

    .curso-detail-item i {
        color: #B8382C;
        font-size: 14px;
        width: 16px;
    }

    /* Botón de Información */
    .btn-curso-info {
        display: block;
        width: 100%;
        padding: 12px;
        background: #B8382C;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-curso-info:hover {
        background: #9a2f25;
        transform: translateY(-2px);
    }

    /* Botón Outline Cursos */
    .btn-outline-cursos {
        display: inline-block;
        padding: 15px 35px;
        border: 2px solid #B8382C;
        color: #B8382C;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .btn-outline-cursos:hover {
        background: #B8382C;
        color: white;
    }

    /* Sección Inferior: Por qué elegir + Banner */
    .cursos-bottom-section {
        background: #FAF7F5;
        padding: 60px 0;
        margin-top: 80px;
    }

    .cursos-bottom-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: center;
    }

    /* Por qué elegir */
    .porque-elegir h3 {
        font-size: 24px;
        font-weight: 700;
        color: #B8382C;
        margin-bottom: 25px;
    }

    .elegir-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .elegir-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 15px;
        color: #333;
        line-height: 1.6;
    }

    .elegir-list i {
        color: #C0623A;
        font-size: 18px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    /* Banner de Formación */
    .formacion-banner {
        background: linear-gradient(135deg, #8B4513 0%, #C0623A 100%);
        padding: 40px;
        border-radius: 15px;
        color: white;
        display: flex;
        align-items: center;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    }

    .formacion-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .formacion-text h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .formacion-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.95;
    }

    .btn-consulta {
        display: inline-block;
        padding: 12px 30px;
        background: white;
        color: #8B4513;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-consulta:hover {
        background: #f5f5f5;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cursos-section {
            padding: 50px 0 0 0;
        }
        
        .cursos-beneficios {
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .section-title-cursos {
            font-size: 24px;
        }
        
        .cursos-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .curso-image {
            height: 180px;
        }
        
        .cursos-bottom-section {
            margin-top: 50px;
            padding: 40px 0;
        }
        
        .cursos-bottom-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .porque-elegir h3 {
            font-size: 20px;
        }
        
        .formacion-banner {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }
        
        .formacion-icon {
            width: 70px;
            height: 70px;
        }
        
        .formacion-text h3 {
            font-size: 20px;
        }
        
        .formacion-text p {
            font-size: 14px;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .cursos-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .cursos-beneficios {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .cursos-bottom-grid {
            gap: 30px;
        }
        
        .formacion-banner {
            padding: 30px;
        }
    }

    @media (min-width: 1025px) {
        .cursos-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* ***********************************************************************************************************  */
      /* Sección de Terapias y Masajes */
        .terapias-section {
            padding: 60px 0 80px;
            background: #FAF7F5;
        }

        /* Beneficios Grid */
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .beneficio-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .beneficio-item:hover {
            transform: translateY(-5px);
        }

        .beneficio-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #C0623A;
        }

        .beneficio-text h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .beneficio-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* Título de Sección */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #C0623A;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .title-decoration {
            width: 80px;
            height: 3px;
            background: #C0623A;
            margin: 0 auto;
        }

        /* Grid de Terapias */
        .terapias-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Tarjetas de Terapia */
        .terapia-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .terapia-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .terapia-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .terapia-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .terapia-card:hover .terapia-image img {
            transform: scale(1.1);
        }

        .terapia-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(192, 98, 58, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .terapia-card:hover .terapia-overlay {
            opacity: 1;
        }

        .terapia-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #C0623A;
        }

        .terapia-content {
            padding: 25px;
        }

        .terapia-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .terapia-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .btn-ver-mas {
            display: inline-block;
            color: #C0623A;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .btn-ver-mas:hover {
            transform: translateX(5px);
        }

        /* Botón Outline */
        .btn-outline {
            display: inline-block;
            padding: 15px 35px;
            border: 2px solid #C0623A;
            color: #C0623A;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: #C0623A;
            color: white;
        }

        .text-center {
            text-align: center;
        }

        .mt-50 {
            margin-top: 50px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .terapias-section {
                padding: 50px 0;
            }
            
            .beneficios-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .terapias-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .terapia-image {
                height: 200px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .terapias-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .beneficios-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .terapias-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
/* ***********************************************************************************************************  */
/* ===== NUESTROS PAQUETES ===== */
.paquetes-section {
  padding: 60px 20px;
  background-color: #fdfaf8;
  font-family: 'Georgia', serif;
  text-align: center;
}

.paquetes-container {
  max-width: 1100px;
  margin: 0 auto;
}

.paquetes-titulo {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.paquetes-subtitulo {
  font-size: 2rem;
  color: #3a2a2a;
  font-weight: 700;
  margin-bottom: 40px;
}

.paquetes-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Tarjeta base */
.paquete-card {
  background: #fff;
  border: 1px solid #e8ddd8;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.paquete-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Tarjeta destacada */
.paquete-destacado {
  border: 2px solid #c0392b;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.15);
}

/* Badge "Más elegido" */
.paquete-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  font-family: sans-serif;
  letter-spacing: 0.12em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Ícono */
.paquete-icono {
  background-color: #fdf0ee;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nombre del plan */
.paquete-nombre {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3a2a2a;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
}

.paquete-nombre span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Precio */
.paquete-precio {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.precio-numero {
  font-size: 2.8rem;
  font-weight: 700;
  color: #c0392b;
  font-family: 'Georgia', serif;
}

.precio-numero sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.precio-moneda {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 6px;
  font-family: sans-serif;
}

/* Beneficios */
.paquete-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  font-family: sans-serif;
  font-size: 0.88rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.paquete-beneficios li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Botón */
.paquete-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid #c0392b;
  color: #c0392b;
  border-radius: 30px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.25s, color 0.25s;
}

.paquete-btn:hover {
  background-color: #c0392b;
  color: #fff;
}

.paquete-btn-destacado {
  background-color: #c0392b;
  color: #fff;
}

.paquete-btn-destacado:hover {
  background-color: #a93226;
  border-color: #a93226;
}

/* Responsive */
@media (max-width: 768px) {
  .paquetes-grid {
    flex-direction: column;
    align-items: center;
  }

  .paquete-card {
    width: 100%;
    max-width: 380px;
  }
}
/* ===== FIN NUESTROS PAQUETES ===== */