
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0b0b0b, #1a1a2e);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.logo-text {
    font-size: 4rem;
    margin-bottom: 10px;
}

.fiber {
    color: #0a6cff;
    font-weight: 800;
}

.wo {
    color: white;
    font-weight: 900;
}

.tagline {
    color: #a8d0ff;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/* Engranajes */
.gear-container {
    margin: 40px 0;
    position: relative;
    height: 150px;
}

.gear {
    position: relative;
    display: inline-block;
}

.gear i {
    font-size: 3rem;
    color: #0a6cff;
    opacity: 0.8;
}

.gear-1 {
    animation: spin 6s linear infinite;
}

.gear-2 {
    position: absolute;
    top: 20px;
    right: -40px;
    font-size: 2.5rem !important;
    animation: spin-reverse 4s linear infinite;
}

.gear-3 {
    position: absolute;
    bottom: 10px;
    left: -30px;
    font-size: 2rem !important;
    animation: spin 5s linear infinite;
}

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

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

.message {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message h2 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.message h2 i {
    color: #0a6cff;
}

.subtitle {
    color: #a8d0ff;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.info {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.info p {
    padding: 12px;
    background: rgba(10, 108, 255, 0.1);
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info i {
    color: #0a6cff;
    width: 25px;
}

/* Contacto */
.contact {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h3 {
    color: white;
    margin-bottom: 15px;
}

.contact p {
    color: #a8d0ff;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: transparent;
    border-color: #25D366;
    transform: scale(1.05);
}

.phone {
    background: #0a6cff;
    color: white;
}

.phone:hover {
    background: transparent;
    border-color: #0a6cff;
    transform: scale(1.05);
}

.contact-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: #0a6cff;
    width: 20px;
}

/* Footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8d0ff;
}

footer p {
    margin: 10px 0;
}

.small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }
    
    .message {
        padding: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .gear i {
        font-size: 2.5rem;
    }
    
    .gear-2 {
        right: -30px;
        font-size: 2rem !important;
    }
    
    .gear-3 {
        left: -20px;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .gear-container {
        height: 120px;
    }
}