/* ===== COMING SOON PAGE STYLES ===== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #003359;
    --primary-dark: #001a2e;
    --primary-light: #004d80;
    --accent: #00a8e8;
    --accent-light: #00d4ff;
    --gold: #ffc107;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* ===== OCEAN BACKGROUND ===== */
.ocean-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Waves */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: wave 20s linear infinite;
}

.wave-2 {
    bottom: 30px;
    opacity: 0.5;
    animation-duration: 25s;
    animation-direction: reverse;
}

.wave-3 {
    bottom: 60px;
    opacity: 0.3;
    animation-duration: 30s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bubbles */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubbles span {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bubble 15s infinite;
}

.bubbles span:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-delay: 0s; animation-duration: 12s; }
.bubbles span:nth-child(2) { left: 20%; width: 40px; height: 40px; animation-delay: 2s; animation-duration: 15s; }
.bubbles span:nth-child(3) { left: 35%; width: 25px; height: 25px; animation-delay: 4s; animation-duration: 18s; }
.bubbles span:nth-child(4) { left: 50%; width: 50px; height: 50px; animation-delay: 1s; animation-duration: 14s; }
.bubbles span:nth-child(5) { left: 65%; width: 30px; height: 30px; animation-delay: 3s; animation-duration: 16s; }
.bubbles span:nth-child(6) { left: 75%; width: 35px; height: 35px; animation-delay: 5s; animation-duration: 13s; }
.bubbles span:nth-child(7) { left: 85%; width: 20px; height: 20px; animation-delay: 2.5s; animation-duration: 17s; }
.bubbles span:nth-child(8) { left: 95%; width: 45px; height: 45px; animation-delay: 4.5s; animation-duration: 19s; }

@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* ===== FLOATING FISH ===== */
.fish-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.fish {
    position: absolute;
    font-size: 2rem;
    animation: swim 20s linear infinite;
}

.fish-1 { top: 15%; left: -50px; animation-duration: 25s; }
.fish-2 { top: 35%; left: -50px; animation-duration: 20s; animation-delay: 5s; font-size: 1.5rem; }
.fish-3 { top: 55%; left: -50px; animation-duration: 30s; animation-delay: 10s; }
.fish-4 { top: 70%; left: -50px; animation-duration: 35s; animation-delay: 3s; font-size: 2.5rem; }
.fish-5 { top: 85%; left: -50px; animation-duration: 22s; animation-delay: 8s; font-size: 3rem; }

@keyframes swim {
    0% {
        transform: translateX(-50px) scaleX(1);
    }
    49% {
        transform: translateX(calc(100vw + 50px)) scaleX(1);
    }
    50% {
        transform: translateX(calc(100vw + 50px)) scaleX(-1);
    }
    100% {
        transform: translateX(-50px) scaleX(-1);
    }
}

/* ===== MAIN CONTAINER ===== */
.coming-soon-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: pulse 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 168, 232, 0.3); }
    50% { box-shadow: 0 10px 60px rgba(0, 168, 232, 0.5); }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease 0.1s both;
}

.badge-icon {
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Title */
.title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-small {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.title-main .highlight {
    color: var(--accent-light);
    position: relative;
}

.title-main .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    opacity: 0.5;
    z-index: -1;
}

/* Subtitle */
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===== COUNTDOWN ===== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--gold) 100%);
    border-radius: var(--radius-full);
    animation: progressPulse 2s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s linear infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

#progressPercent {
    font-weight: 700;
    color: var(--accent-light);
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.subscribe-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subscribe-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.2);
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--accent-light);
}

.btn-subscribe .btn-icon {
    transition: transform 0.3s ease;
}

.btn-subscribe:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

/* Subscribe Success */
.subscribe-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.subscribe-success.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 1.5rem;
}

.subscribe-success p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FEATURES PREVIEW ===== */
.features-preview {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.features-preview h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.25rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.contact-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.9s both;
}

.social-section p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link.tiktok:hover {
    background: #000;
    border-color: #00f2ea;
}

/* ===== FOOTER ===== */
.coming-soon-footer {
    animation: fadeInUp 0.8s ease 1s both;
}

.coming-soon-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.location {
    font-size: 0.8rem;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-boat {
    position: fixed;
    bottom: 50px;
    right: 5%;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.floating-anchor {
    position: fixed;
    bottom: 100px;
    left: 5%;
    font-size: 2.5rem;
    animation: swing 3s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .countdown {
        gap: 0.35rem;
    }
    
    .countdown-item {
        padding: 0.75rem;
        min-width: 65px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: var(--radius);
    }
    
    .input-group input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-subscribe {
        justify-content: center;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-boat,
    .floating-anchor {
        display: none;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 55px;
        padding: 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
