/* =========================
   Hero Category
========================== */
.pa-category-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    padding: 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,40,0.78) 0%, rgba(16,24,40,0.48) 50%, rgba(16,24,40,0.24) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}
.hero-certificated {
    display: flex;
    align-items: center;  
    margin-top: 40px;     
}

.hero-certificated img {
    max-width: 180px;  
    width: 100%;           
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pa-category-label {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--pa-secundary);
}

.pa-category-title {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

/* =========================
   Features Section
========================== */
.hero-features-section {
    padding: 50px 20px;
    background-color: var(--pa-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--pa-base);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-general);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pa-secundary);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--pa-light);
}

/* =========================
   Responsive
========================== */
@media (max-width: 1024px) {
    .pa-category-hero {
        min-height: 60vh;
        padding: 30px;
    }

    .pa-category-title {
        font-size: clamp(28px, 6vw, 50px);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pa-category-hero {
        min-height: 50vh;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pa-category-title {
        font-size: clamp(22px, 7vw, 32px);
    }
}

.reviews-tripadvisor-section {
    text-align: center;
    padding: 40px 20px;
}


.reviews-header p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--pa-gray);
    line-height: 1.6;
}
.certificates-section {
    padding: 40px 20px;
    background-color: var(--pa-principal); 
    color: #fff;
}

.certificates-swiper {
    width: 100%;
}

.certificates-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.certificates-swiper .swiper-slide {
    flex-shrink: 0;       /* evita que las slides se compriman */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.certificates-swiper img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.certificates-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .certificates-swiper img {
        max-width: 100px;
    }
}

/* =========================
   supported 
========================== */
.supported-section {
    padding: 40px 20px;
    border-top: 1px solid #00000014;
}

.supported-swiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.supported-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.supported-swiper .swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supported-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .supported-swiper img {
        max-width: 100px;
    }
}

/* =========================
   CTA Section - Lujo
========================== */
.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pa-principal), var(--pa-dark)); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
       box-shadow: inset 0 4px 0 var(--pa-gold); 
}

.cta-title {
    font-size: clamp(18px, 4vw, 35px);
    color: var(--pa-light);
}


/* Optional: responsive padding */
@media (max-width: 1024px) {
    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }
    .cta-title {
        font-size: clamp(22px, 6vw, 36px);
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: clamp(18px, 7vw, 28px);
    }
}
.pa-products-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.pa-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
}
.category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.category-card-link {
    display: block;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

/* Badge de precio */
.category-price-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pa-base);
    color: #FFD22F;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Overlay del contenido al pasar el mouse */
.category-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    transform: translateY(100%);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-card:hover .category-card-overlay {
    transform: translateY(0);
}

/* TÃ­tulo dentro del overlay */
.category-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--pa-light);
}

/* BotÃ³n */
.category-card-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FFD22F;
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease;
}

.category-card-btn:hover {
    background-color: #FFC107;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-card-link { height: 280px; }
}

@media (max-width: 768px) {
    .category-card-link { height: 220px; }
    .category-card-title { font-size: 1rem; }
}

.category-price-badge span {
    color: var(--pa-gold);
}

/* Contenedor de paginaciÃ³n */
.pa-products-pagination {
    margin-top: 40px;
    text-align: center;
}

.pa-products-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pa-products-pagination span.current {
    background: var(--pa-gold); 
    color: #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hover de los nÃºmeros */
.pa-products-pagination .page-numbers:hover {
    background: var(--pa-secundary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Flechas prev/next */
.pa-products-pagination .prev img,
.pa-products-pagination .next img {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover en las flechas */
.pa-products-pagination .prev img:hover,
.pa-products-pagination .next img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Espaciado interno del nav */
.pa-products-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .pa-products-pagination .page-numbers {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .pa-products-pagination .prev img,
    .pa-products-pagination .next img {
        width: 28px;
        height: 28px;
    }
}/* =========================
   Hero Category
========================== */
.pa-category-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    padding: 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,40,0.78) 0%, rgba(16,24,40,0.48) 50%, rgba(16,24,40,0.24) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}
.hero-certificated {
    display: flex;
    align-items: center;  
    margin-top: 40px;     
}

.hero-certificated img {
    max-width: 180px;  
    width: 100%;           
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pa-category-label {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--pa-secundary);
}

.pa-category-title {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

/* =========================
   Features Section
========================== */
.hero-features-section {
    padding: 50px 20px;
    background-color: var(--pa-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--pa-base);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-general);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pa-secundary);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--pa-light);
}

/* =========================
   Responsive
========================== */
@media (max-width: 1024px) {
    .pa-category-hero {
        min-height: 60vh;
        padding: 30px;
    }

    .pa-category-title {
        font-size: clamp(28px, 6vw, 50px);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pa-category-hero {
        min-height: 50vh;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pa-category-title {
        font-size: clamp(22px, 7vw, 32px);
    }
}

.reviews-tripadvisor-section {
    text-align: center;
    padding: 40px 20px;
}


.reviews-header p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--pa-gray);
    line-height: 1.6;
}
.certificates-section {
    padding: 40px 20px;
    background-color: var(--pa-principal); 
    color: #fff;
}

.certificates-swiper {
    width: 100%;
    max-width:1300px;
    margin: 0 auto;
}

.certificates-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.certificates-swiper .swiper-slide {
    flex-shrink: 0;       /* evita que las slides se compriman */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.pa-certified-heading {
    max-width: 1350px;
    margin: 0 auto;
    font-size: 20px;
    color: var(--pa-secundary);
    padding: 0 0 20px;
}
.certificates-swiper img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.certificates-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .certificates-swiper img {
        max-width: 100px;
    }
}

/* =========================
   supported 
========================== */
.supported-section {
    padding: 40px 20px;
}

.supported-swiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.supported-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.supported-swiper .swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supported-swiper img {
    max-width: 130px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.supported-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .supported-swiper img {
        max-width: 100px;
    }
}

/* =========================
   CTA Section - Lujo
========================== */
.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pa-principal), var(--pa-dark)); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
       box-shadow: inset 0 4px 0 var(--pa-gold); 
}

.cta-title {
    font-size: clamp(18px, 4vw, 35px);
    color: var(--pa-light);
}


/* Optional: responsive padding */
@media (max-width: 1024px) {
    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }
    .cta-title {
        font-size: clamp(22px, 6vw, 36px);
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: clamp(18px, 7vw, 28px);
    }
}
.pa-products-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.pa-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
}
.category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.category-card-link {
    display: block;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

/* Badge de precio */
.category-price-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pa-base);
    color: #FFD22F;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Overlay del contenido al pasar el mouse */
.category-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    transform: translateY(100%);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-card:hover .category-card-overlay {
    transform: translateY(0);
}

/* TÃ­tulo dentro del overlay */
.category-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--pa-light);
}

/* BotÃ³n */
.category-card-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FFD22F;
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease;
}

.category-card-btn:hover {
    background-color: #FFC107;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-card-link { height: 280px; }
}

@media (max-width: 768px) {
    .category-card-link { height: 220px; }
    .category-card-title { font-size: 1rem; }
}

.category-price-badge span {
    color: var(--pa-gold);
}

/* Contenedor de paginaciÃ³n */
.pa-products-pagination {
    margin-top: 40px;
    text-align: center;
}

.pa-products-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pa-products-pagination span.current {
    background: var(--pa-gold); 
    color: #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hover de los nÃºmeros */
.pa-products-pagination .page-numbers:hover {
    background: var(--pa-secundary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Flechas prev/next */
.pa-products-pagination .prev img,
.pa-products-pagination .next img {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover en las flechas */
.pa-products-pagination .prev img:hover,
.pa-products-pagination .next img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Espaciado interno del nav */
.pa-products-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .pa-products-pagination .page-numbers {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .pa-products-pagination .prev img,
    .pa-products-pagination .next img {
        width: 28px;
        height: 28px;
    }
}