        /* --- VARIABLES & RESET --- */
        :root {
            --primary: #004e92; /* Azul Corporativo Profundo */
            --primary-light: #007cc3;
            --accent: #00c4cc; /* Turquesa para detalles */
            --hp-color: #0096D6;
            --ricoh-color: #CF142B;
            --text-dark: #1a1a1a;
            --text-gray: #555555;
            --bg-light: #f4f7f6;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- COMPONENTES UI --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
            box-shadow: 0 4px 15px rgba(0, 78, 146, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.3);
            margin-left: 10px;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }

        .section-padding { padding: 100px 0; }
        .bg-light { background-color: var(--bg-light); }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 800;
            color: var(--text-dark);
        }

        .section-title h3{
            font-size: 2rem;
        }

        .section-title p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            
        }
        
        .logo i { color: var(--accent); margin-right: 8px;}

        .nav-links { display: flex; gap: 30px; }
        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--primary); font-weight:800; }
        .burger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

        /* --- HERO --- */
        .hero {
            padding-top: 140px; /* Espacio para el header fijo */
            padding-bottom: 100px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            display: flex;
            align-items: center;
            min-height: 90vh;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
            background: -webkit-linear-gradient(var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 90%;
        }

        .hero-img {
            position: relative;
        }
        
        .hero-img img {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        /* --- MARCAS --- */
        .brands-section {
            padding: 60px 0;
            background: var(--white);
            border-bottom: 1px solid #eee;
        }

        .brands-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .brand-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
            align-content: baseline;
            background: var(--bg-light);
        }

        .brand-card img{
            padding-bottom: 1rem;
            margin: 0 auto;
        }


        
        .brand-logo {
            font-size: 1.5rem;
            font-weight: 800;
            width: 100px;
        }

        .brand-desc h4 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 700; }
        .brand-desc p { font-size: 0.9rem; color: var(--text-gray); text-align: center; }

        /* --- SERVICIOS DESTACADOS (Alquiler) --- */
        .rental-section {
            background-color: var(--white);
            overflow: hidden;
        }

        .rental-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .rental-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .rental-intro {
            font-size: 1.05rem;
            margin-bottom: 30px;
            color: var(--text-gray);
        }

        .check-list {
            margin-bottom: 30px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .check-icon {
            color: var(--accent);
            background: rgba(0, 196, 204, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .rental-img img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* --- OTROS SERVICIOS (Grid) --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

        .icon-box {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* --- PRODUCTOS (Modelos) --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .product-img {
            height: 250px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .product-img img {
            max-height: 100%;
            mix-blend-mode: multiply; /* Ayuda a que la imagen se fusione si tiene fondo blanco */
        }

        .product-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
        
        .brand-tag {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--ricoh-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .specs-list {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .specs-list li {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }

        .specs-list li::before {
            content: '•';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* --- CONTACTO --- */
        .contact-section { background-color: var(--bg-light);}
        .contact-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-text h2 { font-size: 2rem; margin-bottom: 15px; }
        .contact-text p { color: #aaa; max-width: 500px; }
        
        .contact-data {
            display: inline-grid;
            gap: 30px;
        }

        .data-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .data-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
        }

        /* --- CONTACTO --- */
        .contact { background-color: var(--white); }
        .contact-wrapper {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        .contact-info { flex: 1; }
        .contact-form { flex: 1; padding:1em 0 ; border-radius: 12px; }

        .info-item { display: flex; align-items: center; margin-bottom: 25px; }
        .info-item i { width: 40px; color: var(--primary); font-size: 1.2rem; }
        .info-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
        .info-item p { color: var(--text-gray); }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            transition: var(--transition);
            background: var(--white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #111;
            color: #aaa;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 { color: var(--white); margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { transition: var(--transition); }
        .footer-col ul li a:hover { color: var(--white); }

        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .nav-links {
                display: none; /* Simplificado para el ejemplo */
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .nav-links a { color: var(--text-dark); }
            .burger { display: block; }
            .contact-wrapper { flex-direction: column; }
            .features-grid { grid-template-columns: 1fr 1fr; }
        }

/*******ALQUILERES*******/


 /* --- COMPARATIVA (Rent vs Buy) --- */
        .comparison-section { position: relative; }
        
        .intro-text {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px auto;
            font-size: 1.1rem;
            color: var(--text-gray);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid #eee;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(0, 196, 204, 0.15);
        }

        .benefit-icon {
            width: 80px; height: 80px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .benefit-card:hover .benefit-icon {
            background: var(--primary);
            color: var(--white);
        }

        .benefit-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); }
        .benefit-card p { color: var(--text-gray); font-size: 0.95rem; }

        /* --- CTA STRIP --- */
        .cta-strip {
            background: var(--primary);
            padding: 60px 0;
            color: var(--white);
            text-align: center;
        }
        .cta-strip h2 { font-size: 2rem; margin-bottom: 20px; }
        .cta-strip .btn-white {
            background: var(--white); color: var(--primary);
            padding: 12px 30px; border-radius: 50px; font-weight: 700;
        }
        .cta-strip .btn-white:hover { background: var(--accent); color: var(--white); }

/**************EMPRESA********************/

/* --- HERO EMPRESA --- */
        .page-hero {
            padding-top: 180px;
            padding-bottom: 80px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

        .page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
        .page-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

        /* --- HISTORIA (Layout Texto + Imagen) --- */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-text h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .story-text h3 {
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .story-text p {
            margin-bottom: 20px;
            color: var(--text-gray);
            font-size: 1.05rem;
            text-align: justify;
        }

        .story-img img {
            border-radius: 12px;
            box-shadow: 20px 20px 0px var(--bg-light);
        }

        /* --- QUÉ HACEMOS (Misión) --- */
        .mission-section {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
        }

        .mission-box {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .mission-box h2 { font-size: 2.5rem; margin-bottom: 30px; }
        .mission-box p { font-size: 1.2rem; opacity: 0.9; line-height: 1.8; margin-bottom: 40px; }

        .mission-tags {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .tag {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.3);
            font-weight: 500;
        }

        /* --- CLIENTES (Grid de Iconos) --- */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .client-item {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: var(--transition);
        }

        .client-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .client-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .client-item h4 { font-size: 1rem; color: var(--text-dark); }

        /* --- ZONA DE TRABAJO --- */
        .zone-box {
            background: var(--bg-light);
            border-left: 5px solid var(--accent);
            padding: 30px;
            border-radius: 0 10px 10px 0;
            margin-top: 40px;
        }
/**********IMPRESORAS*************/
/* --- HERO --- */
        .page-hero {
            padding-top: 160px; padding-bottom: 60px;
            background: var(--white); text-align: center;
            border-bottom: 1px solid #eee;
        }
        .page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: var(--primary); }
        .page-hero p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; color: var(--text-gray); }

        /* --- CATALOGO GRID --- */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        /* --- TARJETA DE PRODUCTO --- */
        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: #ddd;
        }

        .card-header {
            background: #f8f9fa;
        
            display: flex;
            align-items: center;
            justify-content: center;
        
            position: relative;
        }

        .badge {
            position: absolute; top: 20px; right: 20px;
            background: var(--accent); color: var(--white);
            padding: 5px 12px; border-radius: 20px;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
        }

        .card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }

        .brand-logo { color: var(--ricoh-red); font-weight: 800; font-size: 0.9rem; margin-bottom: 5px; display: block; }
        
        .product-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
        
        .product-desc { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.5; }

        .specs {
            background: #f8f9fa; border-radius: 8px; padding: 15px; margin-bottom: 25px;
        }
        
        .spec-item { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; border-bottom: 1px solid #eee; padding-bottom: 5px; }
        .spec-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .spec-label { font-weight: 600; color: var(--text-dark); }
        .spec-value { color: var(--text-gray); }

        .card-actions { display: flex; gap: 10px; margin-top: auto; }
        .card-actions .btn {  font-size: 0.85rem; padding: 0.5rem 1rem; }

        /* --- CAJA "CONSULTAR OTROS" --- */
        .generic-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center;
            padding: 40px;
        }
        .generic-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .generic-card p { opacity: 0.9; margin-bottom: 25px; }
        .generic-card i { font-size: 3rem; margin-bottom: 20px; opacity: 0.5; }

/***************MEDIA QUERIES*********************/

        @media screen and (max-width: 900px) {
 .hero-container {

  grid-template-columns: 1fr ;

}

.story-grid{

  grid-template-columns: 1fr ;

}

}

        @media screen and (max-width: 800px) {
.rental-grid {

  grid-template-columns: 1fr ;

}

.section-padding {
  padding: 50px 0;
}

.rental-img{
    max-width: 350px;
}

}


      @media screen and (max-width: 700px) {
 .brands-grid {

  grid-template-columns: 1fr ;

}
}


/* --- HERO CONTACTO --- */
        .contact-hero {
            padding: 60px 0;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            text-align: center;
        }
        .contact-hero h1 { font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
        .contact-hero p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        /* --- SECCIÓN CONTACTO (Basada en imagen.png) --- */
        .contact-section { padding: 60px 0; }
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: start;
        }

        /* Formulario */
        .contact-form-container h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
        .contact-form-container .subtitle { color: #999; margin-bottom: 35px; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px;
            font-family: inherit; font-size: 1rem; transition: var(--transition);
        }
        .form-group input:focus, .form-group select:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(0,78,146,0.1); }

        .btn-submit {
            width: 100%; padding: 15px; background: var(--primary); color: var(--white);
            border: none; border-radius: 50px; font-weight: 700; font-size: 1rem;
            cursor: pointer; transition: var(--transition); margin-top: 10px;
        }
        .btn-submit:hover { background: var(--primary-light); transform: translateY(-2px); }

        /* Info de contacto */
        .info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 35px; }
        .info-icon {
            width: 45px; height: 45px; background: #eef6ff; color: var(--accent);
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px; font-size: 1.2rem; flex-shrink: 0;
        }
        .info-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
        .info-content p { color: var(--text-dark); font-weight: 500; }

        .btn-whatsapp {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--whatsapp); color: var(--white);
            padding: 15px 30px; border-radius: 50px; font-weight: 700;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
            transition: var(--transition);
        }
        .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3); }

        /* --- MAPA --- */
        .map-container {
            width: 100%; height: 450px; background: #eee;
            margin-top: 40px; border-top: 1px solid #eee;
        }
        .map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2); }




/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000; /* Asegura que esté por encima de todo */
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Un verde más oscuro al pasar el mouse */
    transform: translateY(-5px);
    color: #fff;
}

/* Ocultar el texto en pantallas muy pequeñas si prefieres que solo se vea el icono */
@media (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        aspect-ratio: 1/1;
    }
    .whatsapp-float i {
        font-size: 24px;
    }
}