:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #gold;
    --text-color: #ffffff;
    --gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Header y Navegación */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-menu-left {
    justify-content: flex-start;
}

.nav-menu-right {
    justify-content: flex-end;
}

.logo-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.slogan {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 1rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    font-size: 1rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hero Section con Slider */
.hero {
    height: 100vh;
    position: relative;
}

.hero-slider {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.slide-content h1 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slogan-hero {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Servicios Section */
.servicios {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.servicios h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.servicio-card:hover::before {
    opacity: 0.35;
}

.servicio-card:nth-child(1)::before {
    background-image: url('img/vcorporativo.jpg');
}

.servicio-card:nth-child(2)::before {
    background-image: url('img/turisticos.jpg');
}

.servicio-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.servicio-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.servicio-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.servicio-caracteristicas {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.servicio-caracteristicas li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.servicio-caracteristicas li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .servicio-card {
        padding: 2rem;
    }
    
    .servicio-icon {
        font-size: 2.5rem;
    }
    
    .servicio-card h3 {
        font-size: 1.5rem;
    }
    
    .servicio-card p {
        font-size: 1rem;
    }
}

/* Nosotros Section */
.nosotros {
    padding: 5rem 2rem;
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nosotros h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.nosotros-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.nosotros-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nosotros-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nosotros-descripcion {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    text-align: justify;
}

.nosotros-servicios {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    text-align: justify;
}

.nosotros-imagenes {
    margin: 2rem 0;
}

.imagen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.imagen-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.imagen-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    padding: 1.5rem;
    transform: translateY(0);
    transition: background 0.3s ease;
}

.imagen-item:hover .imagen-hover {
    transform: scale(1.1);
}

.imagen-item:hover .imagen-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7));
}

.imagen-overlay h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.imagen-overlay p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .imagen-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .imagen-item {
        aspect-ratio: 16/9;
    }
}

/* Contacto Section */
.contacto {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.contacto h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.mapa-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mapa-iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.contacto-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.contacto-form h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.contacto-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contacto-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: #ffd700;
    border: none;
    border-radius: 5px;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contacto-form button:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.contacto-form button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-card h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card a:hover {
    color: var(--accent-color);
}

.info-card a i {
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .contacto-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mapa-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contacto {
        padding: 3rem 1rem;
    }
    
    .contacto-info {
        grid-template-columns: 1fr;
    }
    
    .mapa-container {
        height: 300px;
    }
    
    .contacto-form {
        padding: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .contacto-form h3 {
        font-size: 1.3rem;
    }
    
    .contacto-form input,
    .contacto-form textarea {
        padding: 0.8rem;
    }
    
    .contacto-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 3rem 2rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.footer-contact i {
    color: var(--accent-color);
}

/* QR Code Section */
.qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.qr-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.qr-container:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

.qr-text {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.privacy-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .qr-section {
        padding: 1rem 0;
    }
    
    .qr-container {
        padding: 1rem;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .qr-text {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    z-index: 3;
}

.swiper-pagination-bullet {
    background: var(--accent-color) !important;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        padding: 1rem 3rem;
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: transparent;
        z-index: 1002;
    }

    .header-logo .logo {
        width: 120px;
        height: 40px;
    }

    .menu-logo {
        display: none;
    }

    .nav-menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 4rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu-container.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .nav-menu-left,
    .nav-menu-right {
        position: static;
        width: 100%;
        justify-content: center;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.4rem;
        padding: 1rem 0;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .menu-toggle {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .slogan {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    .slogan-hero {
        font-size: 1rem;
        margin: 0.8rem 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nosotros-descripcion {
        font-size: 1.1rem;
    }
    
    .nosotros-servicios {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

.mision-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.mision, .vision {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mision-content, .vision-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.mision-imagen, .vision-imagen {
    width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mision-imagen img, .vision-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.texto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 1;
    overflow-y: auto;
}

.texto-overlay h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.texto-overlay p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .mision-imagen, .vision-imagen {
        min-height: 400px;
    }

    .texto-overlay {
        position: relative;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
        padding: 1.5rem;
        height: auto;
        min-height: 100%;
    }

    .texto-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .texto-overlay p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .mision-imagen, .vision-imagen {
        min-height: 350px;
    }

    .texto-overlay {
        padding: 1rem;
    }

    .texto-overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .texto-overlay p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.valores {
    margin-top: 3rem;
}

.valores h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valor-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.valor-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.valor-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.1);
}

.valor-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valor-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .valor-card {
        padding: 1.5rem;
    }
    
    .valor-icon {
        font-size: 2rem;
    }
    
    .valor-card h4 {
        font-size: 1.2rem;
    }
}

/* Sección de Paquetes */
.paquetes {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.paquetes h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Estilos para los puntos clave (Core Features) */
.core-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .core-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .core-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

.paquetes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.paquete-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paquete-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.paquete-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.paquete-header i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.paquete-card:hover .paquete-header i {
    transform: scale(1.1);
}

.paquete-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paquete-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.paquete-caracteristicas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paquete-caracteristicas li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.paquete-caracteristicas li i {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .paquetes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .paquetes-container {
        grid-template-columns: 1fr;
    }
    
    .paquetes {
        padding: 3rem 1rem;
    }
    
    .paquetes h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .paquete-card {
        padding: 1.5rem;
    }
    
    .paquete-header i {
        font-size: 1.5rem;
    }
    
    .paquete-header h3 {
        font-size: 1.3rem;
    }
}

/* Modal de Privacidad */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--secondary-color);
    margin: 20px auto;
    padding: 0;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-modal {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    color: var(--text-color);
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.modal-body h3 {
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.modal-body ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.modal-body ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 10px auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 80vh;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
    }
    
    .modal-body p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .modal-body ul {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-body ul li {
        margin-bottom: 0.8rem;
        padding-left: 1.2rem;
    }
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    padding: 0;
}

.whatsapp-btn::before {
    content: "Contáctanos";
    position: absolute;
    left: 80px;
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #25d366;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover::before {
    opacity: 1;
    visibility: visible;
    left: 85px;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }

    .whatsapp-btn::before,
    .whatsapp-btn::after {
        display: none;
    }
}

/* Menú Móvil */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-container {
        justify-content: center;
        padding: 1rem 3rem;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu-left,
    .nav-menu-right {
        position: static;
        width: 100%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
        text-align: center;
    }

    .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: transparent;
        z-index: 1002;
    }

    .logo {
        width: 120px;
        height: 40px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }
}

/* Estilos específicos para Safari */
@supports (-webkit-touch-callout: none) {
    /* Ajustes generales para Safari */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Ajustes para el header en Safari */
    .header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    /* Ajustes para el slider en Safari */
    .swiper-slide {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Ajustes para efectos hover en Safari */
    .servicio-card:hover,
    .paquete-card:hover,
    .info-card:hover,
    .valor-card:hover {
        -webkit-transform: translateY(-5px) translateZ(0);
        transform: translateY(-5px) translateZ(0);
    }

    /* Ajustes para imágenes con hover en Safari */
    .imagen-hover {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .imagen-item:hover .imagen-hover {
        -webkit-transform: scale(1.1) translateZ(0);
        transform: scale(1.1) translateZ(0);
    }

    /* Ajustes para el formulario en Safari */
    .contacto-form input,
    .contacto-form textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 5px;
    }

    .contacto-form button {
        -webkit-appearance: none;
        appearance: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .contacto-form button:hover {
        -webkit-transform: translateY(-2px) translateZ(0);
        transform: translateY(-2px) translateZ(0);
    }

    /* Ajustes para el menú móvil en Safari */
    .nav-menu-container {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Ajustes para el botón de WhatsApp en Safari */
    .whatsapp-btn {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .whatsapp-btn:hover {
        -webkit-transform: translateY(-5px) translateZ(0);
        transform: translateY(-5px) translateZ(0);
    }

    /* Ajustes para el modal en Safari */
    .modal-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Ajustes para el scroll en Safari */
    .modal-body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Ajustes adicionales para iOS Safari */
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .header,
    .swiper-slide,
    .servicio-card,
    .paquete-card,
    .info-card,
    .valor-card,
    .imagen-hover,
    .contacto-form button,
    .nav-menu-container,
    .whatsapp-btn,
    .modal-content {
        will-change: transform;
    }
}

/* Efectos de Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botón de Subir */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: #ffed4a;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.scroll-top i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .scroll-top i {
        font-size: 1.3rem;
    }
} 