/* style.css */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #25D366;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #222;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #f5f7fa;
}

.container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.phone-number {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    flex: 1;
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    font-size: 48px;
    color: var(--primary-color);
}

h1 {
    color: var(--light-color);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.cta-section {
    margin-bottom: 40px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: #20c157;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    transition: var(--transition);
}

.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.coming-soon h2 {
    color: var(--light-color);
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    margin-bottom: 15px;
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    max-width: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    color: var(--light-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.address {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
    line-height: 1.6;
}

.address-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--light-color);
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-phone, .floating-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-phone {
    background: var(--primary-color);
}

.floating-whatsapp {
    background: var(--accent-color);
}

.floating-phone:hover, .floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
}

.floating-phone svg, .floating-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: var(--light-color);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        top: 15px;
        right: 15px;
    }

    .phone-number {
        padding: 6px 12px;
        font-size: 12px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .logo-icon {
        font-size: 40px;
    }

    .coming-soon {
        padding: 20px;
        margin: 0 10px 30px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .phone-number {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .coming-soon {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .address {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-phone, .floating-whatsapp {
        width: 45px;
        height: 45px;
    }
}