

html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

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

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

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

.main-nav {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    animation: fadeIn 1s ease forwards;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInLeft 1s ease forwards;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.language-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.container {
    display: flex;
    height: calc(100vh - 100px);
    justify-content: end;
    padding-right: 80px;
    overflow: hidden;
}

.left-panel {
    width: 35%;
    background: linear-gradient(135deg, #1a1a1a 0%, #363636 100%);
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 3rem 2rem;
    position: absolute;
    width: 300px;
    height: 70vh;
    top: 0;
    left: 17%;
    z-index: 1;
}



.content {
    max-width: 450px;
    position: relative;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 2rem;
    display: block;
    opacity: 0;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease forwards 0.3s;
}

h1 {
    font-size: 4.2rem;
    font-weight: 200;
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.learn-more svg {
    width: 18px;
    height: 18px;
}

.learn-more:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.social-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.right-panel {
    width: 65%;
    background: #000;
    position: relative;
    overflow: hidden;
}

#bg-image {
    width: 89%;
    height: 101%;
    object-fit: cover;
    object-position: 100% 68%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.3s;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1.5rem 1rem;
    }
    
    .nav-controls {
        gap: 0.75rem;
    }
    
    .language-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .language-icon {
        width: 18px;
        height: 18px;
    }
    
    .container {
        flex-direction: column;
    }
    .container-hero {
        padding: 0;
        position: relative;
    }
  
    .left-panel {
        background: transparent;
        padding: 1rem 2rem 2rem;
        width: 46%;
        height: fit-content;
        top: unset;
        bottom: 0;
        right: 0%;
        left: unset;
        border-top-left-radius: 10px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .right-panel {
        height: 100vh;
        width: 100%;
    }
    .subtitle{
        display: none;
    }
    body > div.container > div.left-panel > div > p {
        display: none;
    }	
}

/* Estilos para la sección About */
.about-section {
    padding: 8rem 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.about-image {
    flex: 1;
    padding-right: 4rem;
    position: relative;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-photo.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    flex: 1;
    max-width: 550px;
}

.about-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 200;
    margin: 0 0 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 1px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s, background-color 0.3s ease, transform 0.3s ease;
}

.about-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.about-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.about-link:hover svg {
    transform: translateX(3px);
}

/* Clase para elementos visibles */
.about-subtitle.visible,
.about-content h2.visible,
.about-text.visible,
.stats-container.visible,
.about-link.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    .about-content {
        width: 100%;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
}

/* Estilos para la sección de Servicios */
.services-section {
    padding: 8rem 0;
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(373px, 1fr));
    gap: 2.5rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 8px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 0;
}

/* Estilos para la tarjeta de Companies & Brands */
.service-card-wide {
    grid-column: span 2;
}

#services > div > div.services-grid > a.service-card-link.service-card-wide > div > div.service-card-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0rem;

}



.service-card-companies {
    padding: 2.5rem;
    min-height: 25px;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
}


.service-card-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-feature h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.5rem;
}

.service-feature p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

/* Responsive para la tarjeta de Companies */
@media (max-width: 992px) {
    .service-card-wide {
        grid-column: span 1;
    }
    
    .service-card-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-companies {
        padding: 2rem;
    }
}

/* Estilos para la sección de TikTok */
.tiktok-section {
    padding: 8rem 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.tiktok-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tiktok-header {
    text-align: center;
    margin-bottom: 5rem;
}

.tiktok-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.tiktok-header h2 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.tiktok-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.tiktok-embed {
    height: 600px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.tiktok-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #000;
}

.tiktok-embed.visible {
    opacity: 1;
    transform: translateY(0);
}

.tiktok-cta {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(238, 29, 82, 0.8);
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.tiktok-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.tiktok-link:hover {
    background-color: rgba(238, 29, 82, 1);
}

.tiktok-link:hover svg {
    transform: translateX(3px);
}

/* Clases para elementos visibles */
.services-subtitle.visible,
.services-header h2.visible,
.services-intro.visible,
.service-card.visible,
.tiktok-subtitle.visible,
.tiktok-header h2.visible,
.tiktok-intro.visible,
.tiktok-embed.visible,
.tiktok-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sección de Entrevistas */
.interviews-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.interviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.interviews-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.interviews-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.interviews-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.interviews-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.interview-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.interview-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.interview-logo {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.interview-content {
    flex: 1;
}

.interview-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: #fff;
}

.interview-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 0.5rem;
    font-weight: 300;
}

.interview-date {
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
}

.interview-arrow {
    flex-shrink: 0;
    color: #888;
    transition: all 0.3s ease;
}

.interview-card:hover .interview-arrow {
    color: #fff;
    transform: translateX(3px);
}

.interviews-subtitle.visible,
.interviews-header.visible,
.interviews-header h2.visible,
.interviews-intro.visible,
.interview-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Media queries para responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tiktok-grid {
        grid-template-columns: 1fr;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header h2,
    .tiktok-header h2,
    .interviews-header h2 {
        font-size: 2.2rem;
    }
    
    .interview-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .interview-logo {
        width: 60px;
        height: 60px;
    }
}

/* Estilos para la sección de Próximamente */
.coming-soon-section {
    padding: 8rem 0;
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 5rem;
}

.coming-soon-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.coming-soon-header h2 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.coming-soon-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.coming-soon-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.coming-soon-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.coming-soon-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coming-soon-card:hover .coming-soon-photo {
    transform: scale(1.05);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.coming-soon-label {
    background-color: rgba(238, 29, 82, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coming-soon-content {
    padding: 2rem;
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.coming-soon-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.coming-soon-notify {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.coming-soon-notify svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.coming-soon-notify:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.coming-soon-notify:hover svg {
    transform: translateX(3px);
}

/* Clases para elementos visibles */
.coming-soon-subtitle.visible,
.interviews-header.visible,
.coming-soon-header h2.visible,
.coming-soon-intro.visible,
.coming-soon-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media queries para responsive */
@media (max-width: 992px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coming-soon-header h2 {
        font-size: 2.2rem;
    }
}

/* Estilos para el menú */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -300px; /* Comienza fuera de la pantalla */
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99;
    transition: right 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.menu-overlay.active {
    right: 0;
}

.menu-content {
    position: relative;
    padding: 80px 40px;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-overlay.active .menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .menu-links li:nth-child(4) { transition-delay: 0.4s; }

.menu-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 200;
    padding: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.menu-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Estilos para la sección de contacto en la página principal */
.contact-section {
    padding: 8rem 2rem;
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ccc;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s, background-color 0.3s ease;
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

/* Clases para elementos visibles */
.contact-content h2.visible,
.contact-content p.visible,
.contact-button.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 4rem 1rem;
    }
}

/* Estilos para el Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0 0 0.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.modal-header p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
    font-weight: 300;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group input {
        padding: 0.7rem 0.8rem;
    }
}
