* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: white;
}

/* SECCIÓN 1 */
.seccion1 {
    min-height: 100vh;
    background-image: url('IMG/seccion1.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px;
    position: relative;
}

.seccion1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.seccion1 > * {
    position: relative;
    z-index: 2;
}

.seccion1-contenido {
    max-width: 800px;
}

.seccion1-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.seccion1 h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Times New Roman', serif;
}

.seccion1 h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 60px;
    font-style: italic;
    font-family: 'Times New Roman', serif;
}

.seccion1 p {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
    text-align: center;
}

.seccion1-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.seccion1-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.seccion1-logos img[alt="Amauna"] {
    height: 50px;
}

@media (max-width: 768px) {
    .seccion1 {
        padding: 40px 20px;
    }

    .seccion1 h1 {
        font-size: 3rem;
    }

    .seccion1 h2 {
        font-size: 2rem;
    }

    .seccion1 p {
        font-size: 1.2rem;
    }

    .seccion1-logos img {
        height: 70px;
    }

    .seccion1-logos img[alt="Amauna"] {
        height: 40px;
    }
}

/* SECCIÓN 2 */
.seccion2 {
    min-height: auto;
    background-color: #B8A4C9;
    display: flex;
    align-items: center;
    padding: 0;
}

.seccion2-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 78vh;
}

.seccion2-texto {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.seccion2-texto h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.02em;
}

.seccion2-texto p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
}

.seccion2-imagen {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.seccion2-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seccion2-logos {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.seccion2-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.seccion2-logos img[alt="Amauna"] {
    height: 50px;
}

@media (max-width: 1024px) {
    .seccion2-contenido {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .seccion2-texto {
        padding: 60px 40px;
    }

    .seccion2-imagen {
        min-height: 500px;
    }

    .seccion2-texto h2 {
        font-size: 2rem;
    }

    .seccion2-texto p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .seccion2-texto {
        padding: 40px 20px;
    }

    .seccion2-texto h2 {
        font-size: 1.75rem;
    }

    .seccion2-texto p {
        font-size: 1rem;
    }

    .seccion2-logos img {
        height: 70px;
    }

    .seccion2-logos img[alt="Amauna"] {
        height: 40px;
    }

    .seccion2-logos {
        bottom: 20px;
        right: 20px;
        gap: 20px;
    }
}

/* SECCIÓN 3 */
.seccion3 {
    min-height: 100vh;
    background-image: url('IMG/SECCION3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
}

.seccion3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.seccion3 > * {
    position: relative;
    z-index: 2;
}

.seccion3-contenido {
    max-width: 900px;
    color: white;
}

.seccion3 h2 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    font-style: italic;
    font-family: 'Times New Roman', serif;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.seccion3-subtitulo {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    font-weight: 400;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.4s;
    padding-left: 15px;
    border-left: 3px solid #4DD0E1;
    transition: all 0.3s ease;
}

.seccion3-subtitulo:hover {
    border-left-width: 6px;
    padding-left: 18px;
    background: rgba(77, 208, 225, 0.1);
    border-radius: 5px;
    padding: 8px 8px 8px 18px;
}

.seccion3-lista {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
    counter-reset: list-counter;
}

.seccion3-lista li {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Georgia', serif;
    margin-bottom: 12px;
    padding: 12px 15px 12px 60px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInRight 0.6s ease forwards;
    counter-increment: list-counter;
}

.seccion3-lista li:nth-child(1) {
    animation-delay: 0.6s;
}

.seccion3-lista li:nth-child(2) {
    animation-delay: 0.8s;
}

.seccion3-lista li:nth-child(3) {
    animation-delay: 1s;
}

.seccion3-lista li:nth-child(4) {
    animation-delay: 1.2s;
}

.seccion3-lista li::before {
    content: counter(list-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4DD0E1, #B8A4C9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(77, 208, 225, 0.3);
}

.seccion3-lista li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #4DD0E1;
    box-shadow: 0 5px 15px rgba(77, 208, 225, 0.3);
}

.seccion3-lista li:hover::before {
    transform: translateY(-50%) scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #F4D03F, #4DD0E1);
    box-shadow: 0 4px 15px rgba(77, 208, 225, 0.5);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.seccion3-destacado {
    font-size: 1.35rem;
    line-height: 1.6;
    font-family: 'Georgia', serif;
    font-weight: 600;
    max-width: 850px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.2), rgba(184, 164, 201, 0.2));
    border-radius: 12px;
    border: 2px solid rgba(77, 208, 225, 0.4);
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s;
    cursor: default;
}

.seccion3-destacado::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(244, 208, 63, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.seccion3-destacado:hover {
    transform: scale(1.02);
    border-color: #4DD0E1;
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.4);
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.3), rgba(184, 164, 201, 0.3));
}

.seccion3-destacado:hover::after {
    opacity: 1;
}

.keyword-s3 {
    color: #4DD0E1;
    font-weight: 700;
    position: relative;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(77, 208, 225, 0.1);
}

.keyword-s3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4DD0E1, #F4D03F);
    transition: width 0.4s ease;
}

.keyword-s3:hover {
    background: rgba(77, 208, 225, 0.25);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.keyword-s3:hover::after {
    width: 100%;
}

.seccion3-logos {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 2;
}

.seccion3-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    opacity: 0.9;
}

.seccion3-logos img[alt="Amauna"] {
    height: 50px;
}

.seccion3-logos img:hover {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(77, 208, 225, 0.8));
}

@media (max-width: 768px) {
    .seccion3 {
        padding: 60px 30px;
    }

    .seccion3 h2 {
        font-size: 2.5rem;
    }

    .seccion3-subtitulo {
        font-size: 1.2rem;
        padding-left: 15px;
        border-left-width: 3px;
    }

    .seccion3-subtitulo:hover {
        padding: 8px 8px 8px 18px;
    }

    .seccion3-lista li {
        font-size: 1.1rem;
        padding: 15px 15px 15px 60px;
        margin-bottom: 15px;
    }

    .seccion3-lista li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 15px;
    }

    .seccion3-lista li:hover {
        transform: translateX(10px);
    }

    .seccion3-destacado {
        font-size: 1.25rem;
        padding: 16px;
    }

    .keyword-s3 {
        padding: 1px 5px;
        font-size: 0.95em;
    }

    .keyword-s3:hover {
        transform: translateY(-1px);
    }

    .seccion3-logos {
        bottom: 20px;
        right: 20px;
        gap: 20px;
    }

    .seccion3-logos img {
        height: 70px;
    }

    .seccion3-logos img[alt="Amauna"] {
        height: 40px;
    }
}

/* SECCIÓN 4 */
.seccion4 {
    background-color: #B8A4C9;
    padding: 60px 50px;
    color: white;
}

.seccion4-contenido {
    max-width: 1000px;
    margin: 0 auto;
}

.seccion4 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Estilos del Acordeón */
.accordion-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(77, 208, 225, 0.5);
}

.accordion-header {
    width: 100%;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.2), rgba(244, 208, 63, 0.2));
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

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

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.3), rgba(244, 208, 63, 0.3));
}

.accordion-header.active {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.4), rgba(244, 208, 63, 0.4));
}

.accordion-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.02em;
}

.accordion-arrow {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content.active {
    max-height: 1000px;
    padding: 20px 25px;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.accordion-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    padding-left: 25px;
    position: relative;
}

.accordion-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4DD0E1;
    font-weight: bold;
    font-size: 1.2rem;
}

.accordion-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4DD0E1;
    font-weight: bold;
    font-size: 1.2rem;
}

.seccion4-nota {
    font-size: 1.05rem;
    margin-top: 10px;
    margin-left: 0;
    font-family: 'Arial', sans-serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.seccion4-precio {
    font-size: 1.6rem;
    margin-top: 40px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(77, 208, 225, 0.15));
    border-radius: 12px;
    border: 2px solid rgba(77, 208, 225, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.seccion4-precio strong {
    font-weight: 700;
    color: #F4D03F;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

@media (max-width: 768px) {
    .seccion4 {
        padding: 50px 25px;
    }

    .seccion4 h2 {
        font-size: 2rem;
    }

    .accordion-header {
        padding: 16px 18px;
        gap: 12px;
    }

    .accordion-icon {
        font-size: 1.5rem;
    }

    .accordion-title {
        font-size: 1.15rem;
    }

    .accordion-arrow {
        font-size: 1.5rem;
    }

    .accordion-content.active {
        padding: 16px 18px;
    }

    .accordion-content li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .seccion4-nota {
        font-size: 0.95rem;
    }

    .seccion4-precio {
        font-size: 1.3rem;
        padding: 20px;
    }

    .seccion4-precio strong {
        font-size: 1.5rem;
    }
}

/* SECCIÓN 5 */
.seccion5 {
    background: linear-gradient(135deg, #F4D03F 0%, #f7e079 100%);
    padding: 80px 50px;
    color: #000;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seccion5-decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.seccion5-decorative-circles .circle-s5 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    animation: floatCircle 20s infinite ease-in-out;
}

.seccion5-decorative-circles .circle-s5-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.seccion5-decorative-circles .circle-s5-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    animation-delay: 7s;
}

.seccion5-decorative-circles .circle-s5-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 15%;
    animation-delay: 14s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(15px) translateX(-15px);
    }
}

.seccion5-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.seccion5-intro {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
}

.highlight-s5 {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #B8A4C9;
    text-decoration-thickness: 3px;
}

.seccion5-pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.price-card-s5 {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-card-s5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #B8A4C9, #4DD0E1);
}

.price-card-s5:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.early-bird-s5 {
    border: 3px solid #B8A4C9;
}

.early-bird-s5::after {
    content: '⭐ OFERTA';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #B8A4C9;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.normal-s5 {
    border: 3px solid #7B8DA6;
}

.price-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-note {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.seccion5-reservation-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 3px solid #4DD0E1;
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.3);
}

.seccion5-reservation-box h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #4DD0E1;
    text-decoration-thickness: 3px;
}

.reservation-text {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.reservation-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.reservation-balance {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 15px;
}

.reservation-balance strong {
    color: #000;
    font-weight: 700;
}

.seccion5-conditions {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    background: rgba(139, 71, 137, 0.1);
    border-radius: 15px;
    padding: 30px 40px;
}

.seccion5-conditions li {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    padding-left: 35px;
    position: relative;
}

.seccion5-conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4DD0E1;
    font-size: 1.5rem;
    font-weight: bold;
}

.seccion5-conditions li:last-child {
    margin-bottom: 0;
}

.seccion5-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B8A4C9 0%, #8B4789 100%);
    color: white;
    text-decoration: none;
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 71, 137, 0.4);
    transition: all 0.4s ease;
    font-family: 'Arial', sans-serif;
}

.seccion5-cta-button .cta-text-main {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.seccion5-cta-button .cta-text-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: none;
    font-weight: 400;
}

.seccion5-cta-button .cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.seccion5-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 71, 137, 0.6);
    background: linear-gradient(135deg, #8B4789 0%, #B8A4C9 100%);
}

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

.seccion5-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    .seccion5 {
        padding: 60px 25px;
        min-height: auto;
    }

    .seccion5-intro {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .seccion5-pricing-cards {
        flex-direction: column;
        gap: 25px;
    }

    .price-card-s5 {
        min-width: auto;
        width: 100%;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .seccion5-reservation-box {
        padding: 25px;
    }

    .seccion5-reservation-box h3 {
        font-size: 1.6rem;
    }

    .reservation-amount {
        font-size: 2.5rem;
    }

    .reservation-text,
    .reservation-balance {
        font-size: 1.1rem;
    }

    .seccion5-conditions {
        padding: 20px 25px;
    }

    .seccion5-conditions li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .seccion5-cta-button {
        padding: 20px 40px;
        width: 100%;
    }

    .seccion5-cta-button .cta-text-main {
        font-size: 1.2rem;
    }

    .seccion5-cta-button .cta-text-sub {
        font-size: 0.85rem;
    }
}

/* SECCIÓN 6 */
.seccion6 {
    background-color: #7B8DA6;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
}

.seccion6-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.seccion6 h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
}

.seccion6-logos {
    display: flex;
    gap: 25px;
    align-items: center;
}

.seccion6-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.seccion6-logos img[alt="Amauna"] {
    height: 40px;
}

.seccion6-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.seccion6-video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.seccion6-video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    transition: all 0.4s ease;
}

.seccion6-video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.seccion6-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #555;
}

.seccion6-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    font-size: 2rem;
    color: #555;
    transition: all 0.3s ease, opacity 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.seccion6-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.seccion6-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(100, 80, 120, 0.95) 0%, rgba(100, 80, 120, 0.85) 70%, transparent 100%);
    padding: 25px 20px 20px 20px;
    color: white;
    z-index: 1;
}

.seccion6-nombre {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
    color: white;
}

.seccion6-descripcion {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    color: white;
}

.seccion6-edad {
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 1200px) {
    .seccion6-videos-grid {
        gap: 40px;
    }

    .seccion6-video-container {
        max-width: 450px;
    }
}

@media (max-width: 900px) {
    .seccion6-videos-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seccion6-video-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .seccion6 {
        padding: 50px 30px;
    }

    .seccion6 h2 {
        font-size: 2.2rem;
    }

    .seccion6-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .seccion6-logos {
        gap: 20px;
    }

    .seccion6-logos img {
        height: 70px;
    }

    .seccion6-logos img[alt="Amauna"] {
        height: 40px;
    }

    .seccion6-videos-grid {
        gap: 40px;
    }

    .seccion6-play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .seccion6-info-overlay {
        padding: 20px 15px 15px 15px;
    }

    .seccion6-nombre {
        font-size: 1.15rem;
    }

    .seccion6-descripcion {
        font-size: 0.95rem;
    }

    .seccion6-edad {
        font-size: 0.9rem;
    }
}

/* SECCIÓN 7 */
/* SECCIÓN 7 */
.seccion7 {
    background-image: url('IMG/seccion7.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 50px;
    color: white;
    position: relative;
    min-height: 100vh;
}

.seccion7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.seccion7 > * {
    position: relative;
    z-index: 2;
}

.seccion7-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.seccion7 h2 {
    font-size: 3.2rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.seccion7-highlight {
    color: #4DD0E1;
    font-weight: 600;
}

.seccion7-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}

.seccion7-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.seccion7-logos img[alt="Amauna"] {
    height: 55px;
}

.seccion7-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.seccion7-pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.seccion7-pilar-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seccion7-pilar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seccion7-pilar-card:hover::before {
    opacity: 1;
}

.seccion7-pilar-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pilar-numero {
    font-size: 5.5rem;
    font-weight: bold;
    color: rgba(77, 208, 225, 0.3);
    font-family: 'Times New Roman', serif;
    line-height: 1;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.seccion7-pilar-card:hover .pilar-numero {
    color: rgba(77, 208, 225, 0.6);
    transform: scale(1.1);
}

.seccion7-pilar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.03em;
    color: white;
    border-bottom: 2px solid rgba(77, 208, 225, 0.4);
    padding-bottom: 15px;
}

.seccion7-pilar-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: rgba(255, 255, 255, 0.95);
}

.seccion7-cyan {
    color: #4DD0E1;
    font-weight: 600;
}

.seccion7-pilar-card ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.seccion7-pilar-card li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    padding-left: 30px;
    position: relative;
}

.seccion7-pilar-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4DD0E1;
    font-size: 1.5rem;
    line-height: 1.4;
}

.pilar-footer {
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1400px) {
    .seccion7-pilares-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seccion7-pilar-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .seccion7-pilares-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .seccion7-pilar-card {
        max-width: 750px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seccion7 {
        padding: 60px 30px;
        background-attachment: scroll;
    }

    .seccion7 h2 {
        font-size: 2.2rem;
    }

    .seccion7-header {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
        align-items: flex-start;
    }

    .seccion7-logos {
        gap: 20px;
    }

    .seccion7-logos img {
        height: 70px;
    }

    .seccion7-logos img[alt="Amauna"] {
        height: 45px;
    }

    .seccion7-pilares-grid {
        gap: 40px;
    }

    .seccion7-pilar-card {
        padding: 35px 28px;
    }

    .pilar-numero {
        font-size: 4rem;
        margin-bottom: 18px;
    }

    .seccion7-pilar-card h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .seccion7-pilar-card p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .seccion7-pilar-card li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .seccion7-pilar-card li::before {
        font-size: 1.3rem;
    }

    .pilar-footer {
        font-size: 0.95rem;
        padding-top: 16px;
    }
}

/* SECCIÓN 8 */
.seccion8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.seccion8-imagen {
    position: relative;
    overflow: hidden;
}

.seccion8-imagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 70%, #8B9CAD 100%);
    z-index: 1;
}

.seccion8-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.seccion8-imagen:hover img {
    transform: scale(1.05);
}

.seccion8-contenido {
    background-color: #8B9CAD;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.seccion8-contenido::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.seccion8-contenido::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.seccion8-texto {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

.seccion8-texto p {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.3s ease;
    padding: 15px;
    border-left: 3px solid transparent;
    cursor: default;
}

.seccion8-texto p:hover {
    transform: translateX(10px);
    border-left-color: #4DD0E1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding-left: 20px;
}

.seccion8-texto p:nth-child(1) {
    animation-delay: 0.2s;
}

.seccion8-texto p:nth-child(2) {
    animation-delay: 0.4s;
}

.seccion8-texto p:nth-child(3) {
    animation-delay: 0.6s;
}

.seccion8-destacado {
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 1.7;
    animation-delay: 0.8s !important;
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(77, 208, 225, 0.15) 100%);
    border-radius: 10px;
    border: 2px solid rgba(77, 208, 225, 0.3);
    transition: all 0.4s ease;
    cursor: default;
}

.seccion8-destacado:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(77, 208, 225, 0.25) 100%);
    border-color: rgba(77, 208, 225, 0.6);
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.3);
}

.seccion8-destacado::before {
    display: none;
}

.seccion8-destacado em {
    font-style: italic;
    font-weight: 600;
    color: #4DD0E1;
    text-shadow: 0 0 20px rgba(77, 208, 225, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.seccion8-destacado:hover em {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(77, 208, 225, 0.8);
}

.highlight-word {
    color: #4DD0E1;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
    padding: 2px 5px;
    border-radius: 3px;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4DD0E1, #F4D03F);
    transition: width 0.4s ease;
}

.highlight-word:hover {
    background: rgba(77, 208, 225, 0.15);
    text-shadow: 0 0 15px rgba(77, 208, 225, 0.6);
    transform: scale(1.05);
}

.highlight-word:hover::after {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .seccion8 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .seccion8-imagen {
        min-height: 400px;
    }

    .seccion8-imagen::before {
        background: linear-gradient(180deg, transparent 70%, #8B9CAD 100%);
    }

    .seccion8-contenido {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .seccion8-imagen {
        min-height: 300px;
    }

    .seccion8-contenido {
        padding: 40px 20px;
    }

    .seccion8-texto p {
        font-size: 1.15rem;
        padding: 12px;
    }

    .seccion8-texto p:hover {
        transform: translateX(5px);
        padding-left: 15px;
    }

    .seccion8-destacado {
        font-size: 1.2rem;
        padding: 20px;
    }

    .seccion8-destacado::before {
        font-size: 3rem;
        top: -10px;
        left: 10px;
    }

    .highlight-word {
        padding: 1px 3px;
    }

    .seccion8-contenido::before,
    .seccion8-contenido::after {
        display: none;
    }
}

/* SECCIÓN 9 */
.seccion9 {
    min-height: 100vh;
    background-image: url('./IMG/seccion9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.seccion9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.seccion9-banner {
    width: 100%;
    background: rgba(139, 156, 173, 0.85);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.seccion9-banner p {
    font-size: 2rem;
    color: white;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    flex: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.seccion9-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-shrink: 0;
}

.seccion9-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.seccion9-logos img[alt="Amauna"] {
    height: 50px;
}

@media (max-width: 1024px) {
    .seccion9-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 40px;
    }

    .seccion9-banner p {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .seccion9 {
        min-height: 70vh;
    }

    .seccion9-banner {
        padding: 30px 20px;
    }

    .seccion9-banner p {
        font-size: 1.4rem;
    }

    .seccion9-logos {
        gap: 20px;
    }

    .seccion9-logos img {
        height: 70px;
    }

    .seccion9-logos img[alt="Amauna"] {
        height: 40px;
    }
}

/* SECCIÓN 10 */
.seccion10 {
    min-height: 100vh;
    background-color: #8B9CAD;
}

.seccion10-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.seccion10-texto {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.seccion10-texto::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.seccion10 h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 50px;
    font-style: italic;
    font-family: 'Times New Roman', serif;
    position: relative;
    z-index: 2;
}

.seccion10-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.seccion10-lista li {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.seccion10-lista li:nth-child(1) { animation-delay: 0.1s; }
.seccion10-lista li:nth-child(2) { animation-delay: 0.2s; }
.seccion10-lista li:nth-child(3) { animation-delay: 0.3s; }
.seccion10-lista li:nth-child(4) { animation-delay: 0.4s; }
.seccion10-lista li:nth-child(5) { animation-delay: 0.5s; }
.seccion10-lista li:nth-child(6) { animation-delay: 0.6s; }
.seccion10-lista li:nth-child(7) { animation-delay: 0.7s; }

.seccion10-lista li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    padding-left: 15px;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.seccion10-lista .bullet {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.seccion10-lista li:hover .bullet {
    transform: scale(1.5);
    background-color: #4DD0E1;
}

.seccion10-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.seccion10-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.seccion10-logos img[alt="Amauna"] {
    height: 50px;
}

.seccion10-logos img:hover {
    transform: scale(1.1);
}

.seccion10-imagen {
    position: relative;
    overflow: hidden;
}

.seccion10-imagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, transparent 70%, #8B9CAD 100%);
    z-index: 1;
}

.seccion10-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.seccion10-imagen:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .seccion10-contenido {
        grid-template-columns: 1fr;
    }

    .seccion10-texto {
        padding: 60px 40px;
    }

    .seccion10-imagen {
        min-height: 500px;
    }

    .seccion10-imagen::before {
        background: linear-gradient(180deg, transparent 70%, #8B9CAD 100%);
    }

    .seccion10 h2 {
        font-size: 2.5rem;
    }

    .seccion10-lista li {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .seccion10-texto {
        padding: 40px 20px;
    }

    .seccion10-imagen {
        min-height: 400px;
    }

    .seccion10 h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .seccion10-lista li {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .seccion10-logos {
        gap: 20px;
    }

    .seccion10-logos img {
        height: 70px;
    }

    .seccion10-logos img[alt="Amauna"] {
        height: 40px;
    }

    .seccion10-texto::before {
        display: none;
    }
}

/* SECCIÓN 11 */
.seccion11 {
    background-color: #A39298;
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seccion11-titulo {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
}

.seccion11-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin-bottom: 60px;
    width: 100%;
}

.seccion11-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.seccion11-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.seccion11-card-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.seccion11-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.seccion11-card:first-child .seccion11-card-img img {
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.3);
}

.seccion11-card:first-child:hover .seccion11-card-img img {
    transform: scale(1.4);
}

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

.seccion11-card-info {
    padding: 25px 20px;
    color: white;
    text-align: center;
}

.seccion11-card-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    line-height: 1.3;
}

.seccion11-card-info p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
    opacity: 0.95;
}

.ver-mas {
    display: inline-block;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    padding: 8px 20px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.seccion11-card:hover .ver-mas {
    background-color: white;
    color: #A39298;
    transform: translateY(-3px);
}

.seccion11-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.seccion11-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.seccion11-logos img[alt="Amauna"] {
    height: 50px;
}

/* MODALES */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #A39298;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #4DD0E1;
    transform: scale(1.2);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 50px;
    color: white;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 400px;
}

.modal-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.95;
}

.modal-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.modal-text p strong {
    font-weight: 700;
    display: block;
    margin-top: 20px;
}

/* RESPONSIVE SECCIÓN 11 */
@media (max-width: 1024px) {
    .seccion11-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }

    .seccion11-card-img {
        height: 400px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .modal-body img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .seccion11 {
        padding: 60px 30px;
    }

    .seccion11-titulo {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .seccion11-card-img {
        height: 350px;
    }

    .seccion11-card-info h3 {
        font-size: 1.2rem;
    }

    .seccion11-card-info p {
        font-size: 1rem;
    }

    .ver-mas {
        font-size: 0.9rem;
        padding: 6px 16px;
    }

    .seccion11-logos {
        gap: 20px;
    }

    .seccion11-logos img {
        height: 70px;
    }

    .seccion11-logos img[alt="Amauna"] {
        height: 40px;
    }

    .modal-close {
        font-size: 2.5rem;
        right: 15px;
        top: 10px;
    }

    .modal-body {
        padding: 30px 20px;
        gap: 25px;
    }

    .modal-text h3 {
        font-size: 1.6rem;
    }

    .modal-subtitle {
        font-size: 1.1rem;
    }

    .modal-text p {
        font-size: 1.05rem;
    }
}

/* SECCIÓN 12 */
.seccion12 {
    background-color: #8B9CAD;
    padding: 0;
}

.seccion12-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 100vh;
}

.seccion12-left {
    display: flex;
    flex-direction: column;
}

.seccion12-header {
    background-color: #8B9CAD;
    padding: 80px 60px;
    color: white;
}

.seccion12-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.underline-text {
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 300;
    color: inherit;
}

a.underline-text {
    color: inherit;
}

.seccion12-header h2 strong {
    font-weight: 700;
}

.seccion12-slogan {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Georgia', serif;
    font-weight: 300;
    opacity: 0.95;
}

.seccion12-img-main {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.seccion12-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.seccion12-img-main:hover img {
    transform: scale(1.05);
}

.seccion12-logos {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    z-index: 2;
}

.seccion12-logos img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.seccion12-logos img[alt="Amauna"] {
    height: 50px;
}

.seccion12-right {
    display: flex;
    flex-direction: column;
}

.seccion12-small-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.seccion12-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.seccion12-small-img:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE SECCIÓN 12 */
@media (max-width: 1024px) {
    .seccion12-container {
        grid-template-columns: 1fr;
    }

    .seccion12-header {
        padding: 60px 40px;
    }

    .seccion12-header h2 {
        font-size: 2rem;
    }

    .seccion12-slogan {
        font-size: 1.8rem;
    }

    .seccion12-right {
        flex-direction: row;
    }

    .seccion12-small-img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .seccion12-header {
        padding: 50px 30px;
    }

    .seccion12-header h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .seccion12-slogan {
        font-size: 1.5rem;
    }

    .seccion12-img-main {
        min-height: 400px;
    }

    .seccion12-right {
        flex-direction: column;
    }

    .seccion12-small-img {
        min-height: 350px;
    }

    .seccion12-logos {
        bottom: 30px;
        left: 30px;
        gap: 20px;
    }

    .seccion12-logos img {
        height: 70px;
    }

    .seccion12-logos img[alt="Amauna"] {
        height: 40px;
    }
}

/* SECCIÓN 13 */
.seccion13 {
    min-height: 100vh;
    background: linear-gradient(135deg, #F4D03F 0%, #FFD93D 50%, #F4D03F 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.seccion13-decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.seccion13-decorative-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
    animation: floatCircle 15s ease-in-out infinite;
}

.seccion13-decorative-circles .circle1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.seccion13-decorative-circles .circle2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

.seccion13-decorative-circles .circle3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

.seccion13-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.seccion13-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2C2C2C;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    line-height: 1.3;
}

.seccion13-note {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 45px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seccion13-pricing {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 35px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.pricing-card.early-bird {
    border: 3px solid #B8A4C9;
}

.pricing-card.early-bird::after {
    content: '⭐ OFERTA';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #B8A4C9;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card.normal {
    border: 3px solid #B8A4C9;
}

.pricing-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #B8A4C9;
    letter-spacing: 1px;
}

.pricing-card.early-bird .pricing-label {
    color: #B8A4C9;
}

.pricing-card.normal .pricing-label {
    color: #B8A4C9;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2C2C2C;
    font-family: 'Arial', sans-serif;
}

.seccion13-details {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 45px;
    line-height: 1.6;
}

.seccion13-details strong {
    color: #B8A4C9;
    font-weight: bold;
}

.seccion13-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B8A4C9 0%, #9B7FB8 100%);
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 35px rgba(184,164,201,0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.seccion13-cta-button .button-text {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.seccion13-cta-button .button-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 1px;
    opacity: 0.95;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.seccion13-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(184,164,201,0.6);
    background: linear-gradient(135deg, #9B7FB8 0%, #B8A4C9 100%);
}

.seccion13-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* RESPONSIVE PARA SECCIÓN 13 */
@media (max-width: 1024px) {
    .seccion13-title {
        font-size: 2.3rem;
    }

    .pricing-card {
        min-width: 250px;
        padding: 30px 35px;
    }

    .pricing-amount {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .seccion13 {
        padding: 60px 30px;
    }

    .seccion13-title {
        font-size: 1.9rem;
    }

    .seccion13-note {
        font-size: 1rem;
    }

    .seccion13-pricing {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        max-width: 320px;
    }

    .seccion13-details {
        font-size: 1.05rem;
    }

    .seccion13-cta-button {
        padding: 20px 45px;
        font-size: 1.1rem;
    }

    .seccion13-cta-button .button-text {
        font-size: 1.2rem;
    }

    .seccion13-cta-button .button-subtext {
        font-size: 0.85rem;
    }

    .seccion13-decorative-circles .circle1 {
        width: 200px;
        height: 200px;
    }

    .seccion13-decorative-circles .circle2 {
        width: 300px;
        height: 300px;
    }

    .seccion13-decorative-circles .circle3 {
        width: 150px;
        height: 150px;
    }
}

/* SECCIÓN 14 */
.seccion14 {
    min-height: 100vh;
    background: #A89CAB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    position: relative;
}

.seccion14-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.seccion14-content {
    flex: 1;
    max-width: 550px;
    color: white;
}

.seccion14-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
    line-height: 1.3;
}

.seccion14-text-block {
    margin-bottom: 60px;
}

.seccion14-text-block p {
    font-size: 1.6rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.seccion14-subtitle {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.seccion14-final {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Georgia', serif;
    text-align: center;
    margin-top: 40px;
}

.seccion14-video {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.seccion14-video video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE PARA SECCIÓN 14 */
@media (max-width: 1024px) {
    .seccion14-container {
        gap: 50px;
    }

    .seccion14-title {
        font-size: 2.5rem;
    }

    .seccion14-text-block p {
        font-size: 1.4rem;
    }

    .seccion14-subtitle {
        font-size: 2.2rem;
    }

    .seccion14-final {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .seccion14 {
        padding: 60px 30px;
    }

    .seccion14-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .seccion14-content {
        max-width: 100%;
    }

    .seccion14-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .seccion14-text-block {
        margin-bottom: 40px;
    }

    .seccion14-text-block p {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .seccion14-subtitle {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .seccion14-final {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .seccion14-video {
        max-width: 100%;
    }

    .seccion14-video video {
        border-radius: 10px;
    }
}

/* SECCIÓN 15 - ITINERARIO */
.seccion15 {
    min-height: 100vh;
    background: #7B8DA6;
    padding: 80px 50px;
    position: relative;
}

.seccion15-container {
    max-width: 1600px;
    margin: 0 auto;
}

.seccion15-title {
    font-size: 4rem;
    font-weight: normal;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: left;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.seccion15-days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.day-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.day-card:nth-child(1) {
    animation-delay: 0.1s;
}

.day-card:nth-child(2) {
    animation-delay: 0.2s;
}

.day-card:nth-child(3) {
    animation-delay: 0.3s;
}

.day-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.day-header {
    background: linear-gradient(135deg, #B8A4C9 0%, #9B7FB8 100%);
    padding: 25px 20px;
    text-align: center;
}

.day-header h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Arial', sans-serif;
}

.day-subtitle {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.day-schedule {
    padding: 25px 20px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.rest {
    text-align: center;
    font-style: italic;
    color: #B8A4C9;
    font-weight: 600;
}

.time {
    font-size: 0.9rem;
    font-weight: bold;
    color: #7B8DA6;
    font-family: 'Arial', sans-serif;
}

.activity {
    font-size: 1rem;
    color: #2C2C2C;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.activity-detail {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-left: 15px;
}

.activity-guide {
    font-size: 0.85rem;
    color: #B8A4C9;
    font-weight: 600;
    margin-left: 15px;
}

.seccion15-logos {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    padding-top: 40px;
}

.seccion15-logos img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.seccion15-logos img[alt="Amauna"] {
    height: 60px;
}

.seccion15-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* RESPONSIVE PARA SECCIÓN 15 */
@media (max-width: 1200px) {
    .seccion15-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seccion15 {
        padding: 60px 30px;
    }

    .seccion15-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .seccion15-days-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .day-header h3 {
        font-size: 1.5rem;
    }

    .day-subtitle {
        font-size: 1rem;
    }

    .schedule-item {
        padding: 12px 0;
    }

    .time {
        font-size: 0.85rem;
    }

    .activity {
        font-size: 0.95rem;
    }

    .activity-detail {
        font-size: 0.85rem;
    }

    .activity-guide {
        font-size: 0.8rem;
    }

    .seccion15-logos {
        justify-content: center;
        gap: 20px;
    }

    .seccion15-logos img {
        height: 70px;
    }

    .seccion15-logos img[alt="Amauna"] {
        height: 45px;
    }
}

/* SECCIÓN 16 - POLÍTICAS */
.seccion16 {
    min-height: 100vh;
    background: #B8A4C9;
    padding: 80px 50px;
    position: relative;
}

.seccion16-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.seccion16-logos {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.seccion16-logos img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.seccion16-logos img[alt="Amauna"] {
    height: 50px;
}

.seccion16-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
}

.seccion16-intro {
    font-size: 1.15rem;
    color: white;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 600;
}

.seccion16-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.policy-section {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border-left: 5px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.policy-section:hover {
    background: rgba(255,255,255,0.15);
    border-left-color: white;
}

.policy-title {
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.policy-text {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.policy-list li {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-size: 1.5rem;
    line-height: 1.4;
}

.policy-list li strong {
    font-weight: bold;
}

.policy-disclaimer {
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.policy-disclaimer p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.policy-disclaimer p:last-child {
    margin-bottom: 0;
    margin-top: 20px;
}

.policy-disclaimer strong {
    font-weight: bold;
    font-size: 1.15rem;
}

/* RESPONSIVE PARA SECCIÓN 16 */
@media (max-width: 1024px) {
    .seccion16-title {
        font-size: 2.2rem;
    }

    .seccion16-logos {
        position: static;
        justify-content: flex-end;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .seccion16 {
        padding: 60px 30px;
    }

    .seccion16-title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .seccion16-logos {
        justify-content: center;
        margin-bottom: 30px;
    }

    .seccion16-logos img {
        height: 70px;
    }

    .seccion16-logos img[alt="Amauna"] {
        height: 40px;
    }

    .seccion16-intro {
        font-size: 1.05rem;
        text-align: center;
    }

    .policy-section {
        padding: 25px 20px;
    }

    .policy-title {
        font-size: 1.25rem;
    }

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

    .policy-list li {
        font-size: 1rem;
        padding-left: 20px;
    }

    .policy-disclaimer {
        padding: 25px 20px;
    }

    .policy-disclaimer p {
        font-size: 1rem;
    }

    .policy-disclaimer strong {
        font-size: 1.05rem;
    }
}

/* SECCIÓN 17 - CONTACTO FINAL */
.seccion17 {
    min-height: 100vh;
    background: linear-gradient(135deg, #A89CAB 0%, #9B8BA1 100%);
    padding: 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seccion17-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.seccion17-title {
    font-size: 3.5rem;
    font-weight: normal;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-bottom: 50px;
    line-height: 1.2;
}

.seccion17-message {
    margin-bottom: 45px;
}

.seccion17-message p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.9;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.seccion17-message .highlight {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.seccion17-message .highlight-secondary {
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 20px;
}

.seccion17-cta-text {
    font-size: 1.15rem;
    color: white;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
}

.seccion17-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.contact-name {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.contact-phone,
.contact-email,
.contact-social {
    font-size: 1.05rem;
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover,
.contact-social:hover {
    color: #F4D03F;
    transform: translateX(5px);
}

.seccion17-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.seccion17-logos img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.seccion17-logos img[alt="Amauna"] {
    height: 70px;
}

.seccion17-logos img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* RESPONSIVE PARA SECCIÓN 17 */
@media (max-width: 1024px) {
    .seccion17-title {
        font-size: 3rem;
    }

    .seccion17-message p {
        font-size: 1.15rem;
    }

    .seccion17-message .highlight {
        font-size: 1.25rem;
    }

    .seccion17-message .highlight-secondary {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .seccion17 {
        padding: 60px 30px;
    }

    .seccion17-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .seccion17-message {
        margin-bottom: 35px;
    }

    .seccion17-message p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .seccion17-message .highlight {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .seccion17-message .highlight-secondary {
        font-size: 1.15rem;
        margin-top: 15px;
    }

    .seccion17-cta-text {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .seccion17-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-name {
        font-size: 1.2rem;
    }

    .contact-phone,
    .contact-email,
    .contact-social {
        font-size: 1rem;
    }

    .seccion17-logos {
        gap: 25px;
        margin-top: 40px;
    }

    .seccion17-logos img {
        height: 70px;
    }

    .seccion17-logos img[alt="Amauna"] {
        height: 50px;
    }
}
