:root {
    --primary-color: #FF4B12;
    --text-color: #000000;
    --button-color: #000000;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

img, svg, video {
    display: block;
    max-width: 100%;
}

/* Header y navegación */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-button, .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: opacity 0.3s ease;
    margin-right: 30px;
    padding: 5px 0;
}

.cta-button:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
    background-color: var(--button-color);
    border-radius: 50%;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    z-index: 1;
}

.mobile-hero-image {
    display: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 100px;
}

.mobile-hero-image img {
    width: 100%;
    height: auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.watch-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--button-color);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.play-icon {
    font-size: 0.8em;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    header {
        padding: 15px 20px;
        position: relative;
        background-color: var(--primary-color);
        width: 100%;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .hero {
        min-height: calc(100vh - 200px);
        height: auto;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .background-video {
        display: none !important;
    }

    .mobile-hero-image {
        display: block;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .content-wrapper {
        padding: 0 20px;
        height: auto;
        flex: 1;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
        margin: 0 auto 30px;
        max-width: 90%;
    }

    .watch-button {
        margin: 0 auto;
        display: inline-flex;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .main-links {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        width: 100%;
        justify-content: center;
        padding-top: 5px;
        margin-bottom: 10px;
    }

    .logo img {
        height: 60px;
    }

    .cta-button {
        margin-right: 0;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close-modal {
        top: -35px;
        right: 5px;
    }
} 

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.close-modal {
    position: absolute;
    right: 0;
    top: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-modal:hover {
    opacity: 0.8;
}

.language-selector {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    z-index: 1000;
}

.lang-btn {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    color: var(--text-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.lang-btn.active {
    opacity: 1;
}

.lang-btn:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .language-selector {
        bottom: 20px;
        right: 20px;
        padding: 6px 10px;
    }

    .lang-btn {
        font-size: 12px;
    }
} 

@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
} 

/* Contact Us Section */
.contactUs {
    background-color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contactUs .wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    will-change: transform, opacity;
    padding-bottom: 40px;
    white-space: pre-line;
    width: 100%;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.contactUs .columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.contactUs .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    will-change: transform, opacity;
}

.contactUs .column h2 {
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    width: 100%;
}

.contact-button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.contact-button:hover {
    background-color: #fff;
    color: #000;
}

/* Animation delays for columns */
.contactUs .column:nth-child(1) { transition-delay: 0s; -webkit-transition-delay: 0s; }
.contactUs .column:nth-child(2) { transition-delay: 0.1s; -webkit-transition-delay: 0.1s; }
.contactUs .column:nth-child(3) { transition-delay: 0.2s; -webkit-transition-delay: 0.2s; }

.contactUs .column.animate {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.contactUs .column.animate:nth-child(1) { transition-delay: 0.2s; -webkit-transition-delay: 0.2s; }
.contactUs .column.animate:nth-child(2) { transition-delay: 0.4s; -webkit-transition-delay: 0.4s; }
.contactUs .column.animate:nth-child(3) { transition-delay: 0.6s; -webkit-transition-delay: 0.6s; }

/* Responsive Design for Contact Us */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contactUs {
        padding: 60px 20px 150px 20px;
        min-height: auto;
        height: auto;
    }
    
    .contactUs .wrapper {
        width: 100%;
    }
    
    .contactUs .columns {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .contactUs .column {
        margin-bottom: 0;
        width: 100%;
        flex: none;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
        padding-bottom: 0;
    }
}

/* Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .contactUs {
        height: auto;
        min-height: auto;
    }
    
    .contactUs .column {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    
    .contactUs .column.animate {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    z-index: 2;
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    fill: white;
    animation: bounce 2s infinite;
    display: block;
    cursor: pointer;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
    fill: inherit;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
} 