/* Estilos específicos para la página de Cancún */

/* Hero Section Cancún */
.hero-cancun {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.8) 0%, 
        rgba(59, 130, 246, 0.8) 100%),
        url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-cancun::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.7), rgba(59, 130, 246, 0.7));
    z-index: 1;
}

.hero-cancun-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-cancun h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cancun p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cancun .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Actividades Cancún */
.actividades-cancun {
    padding: 5rem 0;
    background: #f8fafc;
}

.actividades-cancun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.actividad-cancun-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.actividad-cancun-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.actividad-cancun-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.actividad-cancun-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.actividad-cancun-card:hover .actividad-cancun-image img {
    transform: scale(1.1);
}

.actividad-cancun-price {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.actividad-cancun-content {
    padding: 2rem;
}

.actividad-cancun-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.actividad-cancun-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.actividad-cancun-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.actividad-cancun-feature {
    background: #dcfdf7;
    color: #065f46;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.actividad-cancun-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.actividad-cancun-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.actividad-cancun-rating i {
    color: #f59e0b;
}

.actividad-cancun-rating span {
    font-weight: 600;
    color: #1f2937;
}

/* Resorts Cancún */
.resorts-cancun {
    padding: 5rem 0;
    background: white;
}

.resorts-cancun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resort-cancun-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resort-cancun-card:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
}

.resort-cancun-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.resort-cancun-card.featured::before {
    content: 'TODO INCLUIDO';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #10b981;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.resort-cancun-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.resort-cancun-precio {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.resort-cancun-precio span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.resort-cancun-duracion {
    color: #6b7280;
    margin-bottom: 2rem;
}

.resort-cancun-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.resort-cancun-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resort-cancun-incluye li:last-child {
    border-bottom: none;
}

.resort-cancun-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Cenotes y Aventuras */
.cenotes-cancun {
    padding: 5rem 0;
    background: #f8fafc;
}

.cenotes-cancun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cenote-cancun-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cenote-cancun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cenote-cancun-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cenote-cancun-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cenote-cancun-card:hover .cenote-cancun-image img {
    transform: scale(1.05);
}

.cenote-cancun-content {
    padding: 1.5rem;
}

.cenote-cancun-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.cenote-cancun-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonios Cancún */
.testimonios-cancun {
    padding: 5rem 0;
    background: white;
}

.testimonios-cancun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-cancun-card {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #06b6d4;
    position: relative;
}

.testimonio-cancun-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #06b6d4;
    opacity: 0.3;
}

.testimonio-cancun-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-cancun-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-cancun-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-cancun-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-cancun-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-cancun {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-cancun h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-cancun p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-cancun .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .actividades-cancun-grid,
    .resorts-cancun-grid,
    .cenotes-cancun-grid {
        grid-template-columns: 1fr;
    }
    
    .actividad-cancun-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resort-cancun-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-cancun {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-cancun h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-cancun p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-cancun .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
} 