/* ===========================
   CSS STYLES FOR COLOMBIAAPPS
   =========================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #0a0a0a, #1a1a2e, #16213e);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.whatsapp-float i {
    margin-top: 16px;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fcdc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #0072ce;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fcdc00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fcdc00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fcdc00;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1rem 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #fcdc00;
    background: rgba(252, 220, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fcdc00, #0072ce, #ce1126);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(252, 220, 0, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 114, 206, 0.3)); }
}

.hero .slogan {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fcdc00;
    font-weight: 600;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #fcdc00, #0072ce);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(252, 220, 0, 0.3);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(252, 220, 0, 0.4);
}

.cta-whatsapp {
    background: linear-gradient(45deg, #25d366, #20BA5A);
}

/* Colombia Badge */
.colombia-badge {
    background: linear-gradient(45deg, #fcdc00, #0072ce, #ce1126);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Container for centered sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0rem;
}

/* Sections */
section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: black;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #fcdc00, #0072ce);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.payment-method {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method span {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

.service-card {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 220, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    font-size: 3rem;
    color: #fcdc00;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcdc00;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 5rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

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

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(45deg, #fcdc00, #0072ce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.portfolio-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #f0f0f0;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e0e0e0;
}

.portfolio-link {
    display: inline-block;
    color: #0072ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #fcdc00;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 5rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    animation: float 25s linear infinite;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    margin: 0 1rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(252, 220, 0, 0.3);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.stars {
    color: #fcdc00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(252, 220, 0, 0.5);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #fcdc00;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

.author-info small {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
    margin-top: 0.2rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fcdc00;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(252, 220, 0, 0.5);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #fcdc00;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Use Cases Section */
.use-cases {
    background: linear-gradient(135deg, #fcdc00 0%, #0072ce 100%);
    color: white;
    margin: 5rem auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.use-case {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.use-case i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.use-case h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 5rem auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,100" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: justify-content;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    align-items: justify-content;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    align-items: justify-content;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
    background: #1a1a1a;
    color: white;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(252, 220, 0, 0.1);
    border-color: #fcdc00;
}

.contact-method i {
    font-size: 2.5rem;
    color: #fcdc00;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 3rem 5%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fcdc00;
}

/* Coverage Area */
.coverage-area {
    background: linear-gradient(135deg, #ce1126 0%, #fcdc00 50%, #0072ce 100%);
    color: black;
    text-align: center;
    padding: 0rem;
    border-radius: 20px;
    margin: 0rem 0;
}

.coverage-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.city-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(252, 220, 0, 0.3);
    border-top: 3px solid #fcdc00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .slogan {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    nav {
        padding: 1rem 2rem;
    }
    
    section {
        padding: 3rem 2rem;
    }

    .colombia-badge {
        position: static;
        margin: 1rem auto;
        display: inline-block;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float i {
        margin-top: 13px;
    }

    .payment-methods {
        gap: 1rem;
    }

    /* Testimonials mobile responsive */
    .testimonials-carousel {
        margin: 0 1rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .testimonial-content::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }

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

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .carousel-indicators {
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}


/*-- ESTILOS ADICIONALES PARA EL BOTÓN DE COMPARTIR -- */
.cta-button.cta-share {
    background: linear-gradient(45deg, #25d366, #128c7e);
    position: relative;
    overflow: hidden;
}

.cta-button.cta-share::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;
}

.cta-button.cta-share:hover::before {
    left: 100%;
}

/* Animación de pulso para llamar la atención */
@keyframes sharepulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button.cta-share:hover {
    animation: sharepulse 0.6s ease-in-out;
}


/*++++++++++++++++************************++++++++++++++++++++*/


        
        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .version {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .current {
            border-left: 4px solid #f44336;
        }
        .optimized {
            border-left: 4px solid #4caf50;
        }
        .header {
            background: linear-gradient(45deg, #fcdc00, #0072ce);
            color: white;
            padding: 1.5rem;
            margin: -2rem -2rem 2rem -2rem;
            border-radius: 15px 15px 0 0;
            text-align: center;
        }
        .analysis {
            background: #e3f2fd;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #2196f3;
            margin: 2rem 0;
        }
        .business-impact {
            background: #e8f5e8;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #4caf50;
            margin: 2rem 0;
        }
        .weakness {
            background: #ffebee;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 3px solid #f44336;
        }
        .strength {
            background: #e8f5e8;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 3px solid #4caf50;
        }
        .cta-examples {
            background: #fff3e0;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ff9800;
            margin: 2rem 0;
        }
        h1, h2, h3 {
            color: black;
            /*color: white;*/

        }
        .highlight {
            background: #fcdc00;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .comparison {
                grid-template-columns: 1fr;
            }
        }


/* ESTILOS CSS PARA LOS BOTONES DE TELEGRAM */

/*  Botón principal de Telegram */
 
.cta-telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
    color: white;
    transition: all 0.3s ease;
}

.cta-telegram:hover {
    background: linear-gradient(45deg, #005580, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

/*  Botón flotante de Telegram */
.telegram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /*  Ubicado arriba del botón de WhatsApp */
    right: 20px;
    background-color: #0088cc;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: telegramPulse 3s infinite;
}

.telegram-float:hover {
    transform: scale(1.1);
    background-color: #005580;
}

.telegram-float i {
    margin-top: 16px;
}

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

/*  Para móviles - ajustar posición */
@media (max-width: 768px) {
    .telegram-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
    }
    
    .telegram-float i {
        margin-top: 13px;
    }
}


/***********************************************/