/* ============================================
   COMING SOON PAGE - VALLE DEL SOL
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #003180 0%, #036da7 50%, #61bd98 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.plane {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
    animation: flyAcross 20s linear infinite;
}

.plane-1 {
    top: 15%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.plane-2 {
    top: 45%;
    animation-delay: 8s;
    animation-duration: 30s;
    font-size: 2rem;
}

.plane-3 {
    top: 75%;
    animation-delay: 15s;
    animation-duration: 28s;
    font-size: 2.5rem;
}

@keyframes flyAcross {
    0% {
        left: -10%;
        transform: rotate(-10deg);
    }
    100% {
        left: 110%;
        transform: rotate(0deg);
    }
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    animation: floatCloud 40s linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.cloud-1 {
    width: 100px;
    height: 50px;
    top: 20%;
    animation-duration: 50s;
}

.cloud-2 {
    width: 150px;
    height: 60px;
    top: 50%;
    animation-duration: 45s;
    animation-delay: 10s;
}

.cloud-3 {
    width: 120px;
    height: 55px;
    top: 70%;
    animation-duration: 55s;
    animation-delay: 20s;
}

.cloud-4 {
    width: 80px;
    height: 40px;
    top: 35%;
    animation-duration: 48s;
    animation-delay: 30s;
}

@keyframes floatCloud {
    0% {
        left: -20%;
    }
    100% {
        left: 120%;
    }
}

/* Main Container */
.coming-soon-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* Logo */
.logo-section {
    margin-bottom: 2rem;
}

.logo {
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Main Content */
.main-content {
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #fbf036, #61bd98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Countdown Timer */
.countdown-section {
    margin-bottom: 4rem;
}

.countdown-label {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #fbf036;
    box-shadow: 0 15px 50px rgba(251, 240, 54, 0.3);
}

.time-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fbf036;
    line-height: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    opacity: 0.5;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0.3;
    }
}

/* Features Preview */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #61bd98;
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.4);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-box h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-box p strong {
    color: #fbf036;
}

.newsletter-form {
    position: relative;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #fbf036;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(251, 240, 54, 0.3);
}

.submit-btn {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #fbf036, #f9d423);
    color: #003180;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(251, 240, 54, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 240, 54, 0.6);
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.success-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(97, 189, 152, 0.3);
    border: 2px solid #61bd98;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message.show {
    display: flex;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #61bd98;
    transform: translateY(-3px);
}

.contact-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
}

.contact-link.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Social Media */
.social-section {
    margin-bottom: 2rem;
}

.social-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: white;
}

.social-icon.facebook:hover {
    background: #1877F2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    box-shadow: 0 10px 30px rgba(253, 29, 29, 0.5);
}

.social-icon.tiktok:hover {
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.social-icon.youtube:hover {
    background: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

/* Footer */
.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbf036, #61bd98);
    width: 0%;
    transition: width 0.5s ease;
}

/* Fade In Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease 0.8s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease 1s both;
}

.fade-in-delay-6 {
    animation: fadeIn 1s ease 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        height: 70px;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .newsletter-box {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input,
    .submit-btn {
        width: 100%;
        min-width: 100%;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-box {
        min-width: 70px;
        padding: 1rem 0.8rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
}
