/* ==========================================================================
   FRAMI STYLE - DISEÑO PREMIUM B2B DE ALTO RENDIMIENTO
   Estilo personalizado de Lubricación Industrial - Paraguay
   ========================================================================== */

/* 1. Variables del Sistema de Diseño */
:root {
    --bg-dark-deep: #0a0b0d;
    --bg-dark-card: #12141c;
    --bg-dark-accent: #1a1d29;
    --border-dark: #222636;
    
    --color-celeste: #00a9d1;
    --color-celeste-deep:#007ba0;
    --color-red: #E83A1A;
    
    --accent-principal: var(--color-celeste); /* Celeste principal (95% del logo) */
    --accent-secundario: var(--color-red);       /* Rojo de acento para la flecha */
    --accent-gradient:   linear-gradient(135deg, var(--color-celeste) 0%, var(--color-celeste-deep) 100%);
    --accent-glow: rgba(0, 169, 209, 0.35);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px var(--accent-glow);
}

/* 2. Reseteo y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark-deep);
    color: var(--text-primary);
}

body {
    background-color: var(--bg-dark-deep);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Estilos de Estructura / Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 30px;
}

.text-center {
    text-align: center;
}

/* 4. Topbar (Barra Superior) */
.topbar-area {
    background-color: #050608;
    border-bottom: 1px solid var(--border-dark);
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left a {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-left a i {
    color: var(--accent-principal);
}

.topbar-left a:hover {
    color: var(--accent-secundario);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-badge {
    background-color: rgba(255, 115, 0, 0.1);
    color: var(--accent-secundario);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 115, 0, 0.25);
    font-weight: 500;
}

.quote-btn-top {
    background: var(--accent-gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.quote-btn-top:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

/* 5. Encabezado / Header */
.main-header {
    background-color: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-area .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.img-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border-dark);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Menú de Navegación */
.navigation-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation-menu > ul > li {
    position: relative;
}

.navigation-menu > ul > li > a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navigation-menu > ul > li > a:hover,
.navigation-menu > ul > li > a.active-link {
    color: var(--accent-principal);
}

/* Submenús */
.navigation-menu li.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-premium);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.submenu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.submenu a:hover {
    background-color: var(--bg-dark-accent);
    color: var(--accent-principal);
    padding-left: 25px;
}

/* Acciones */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn-header {
    background-color: #25d366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn-header:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* 6. Slider / Hero Section */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 550px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s ease-in-out;
}

.slide-item.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.badge-accent {
    color: var(--accent-secundario);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.slide-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

/* Botones de acción */
.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-principal);
    transform: translateY(-3px);
}

/* Controles del Slider */
.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-nav button {
    background-color: rgba(0,0,0,0.5);
    border: 1px solid var(--border-dark);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-nav button:hover {
    background-color: var(--accent-principal);
    color: #000;
    border-color: var(--accent-principal);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots span.active {
    background-color: var(--accent-principal);
    width: 30px;
    border-radius: 10px;
}

/* 7. Encabezados de Sección */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-principal);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 16px;
}

/* 8. Sección Showcase de Productos (Módulo Replicado) */
.products-showcase-section {
    padding: 90px 0;
    background-color: var(--bg-dark-deep);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-principal);
    box-shadow: var(--shadow-premium);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Ratio */
    background-color: #000;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 13, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-card-quote {
    background: var(--accent-gradient);
    color: #000;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-secundario);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.product-card:hover .product-link {
    color: var(--accent-principal);
}

.product-link i {
    transition: var(--transition-smooth);
}

.product-card:hover .product-link i.fa-arrow-right {
    transform: translateX(5px);
}

/* 9. Banner CTA */
.cta-banner-area {
    padding: 60px 0;
    background-image: linear-gradient(135deg, rgba(255, 115, 0, 0.15) 0%, rgba(10, 11, 13, 0.95) 100%);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn-call {
    background-color: var(--bg-light);
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-call:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
}

.cta-btn-wa {
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-wa:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* 10. Servicios */
.services-section {
    padding: 90px 0;
    background-color: var(--bg-dark-accent);
}

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

.service-box {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-box:hover {
    border-color: var(--accent-principal);
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 115, 0, 0.1);
    color: var(--accent-principal);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(255, 115, 0, 0.25);
    transition: var(--transition-smooth);
}

.service-box:hover .service-icon {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: var(--shadow-neon);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* 11. Formulario de Cotización */
.quote-form-section {
    padding: 90px 0;
    background-color: var(--bg-dark-deep);
}

.quote-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.quote-info-side {
    padding: 50px;
    background-image: linear-gradient(135deg, rgba(255, 115, 0, 0.1) 0%, rgba(5, 6, 8, 0.95) 100%);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-info-side h3 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.color-accent {
    color: var(--accent-principal);
}

.quote-info-side p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 35px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-details-list li i {
    color: var(--accent-principal);
    font-size: 18px;
    width: 25px;
}

.quote-form-side {
    padding: 50px;
}

.custom-contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.custom-contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
    background-color: var(--bg-dark-accent);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
    border-color: var(--accent-principal);
    box-shadow: 0 0 10px rgba(255, 115, 0, 0.2);
}

.custom-contact-form select option {
    background-color: var(--bg-dark-card);
    color: #fff;
}

.submit-btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    transition: var(--transition-smooth);
}

.submit-btn-whatsapp:hover {
    background-color: #128c7e;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* 12. Footer */
.frami-footer {
    background-color: #050608;
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.about-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.img-logo-footer {
    height: 40px;
    border-radius: 4px;
}

.about-col p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-principal);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-col ul li a:hover {
    color: var(--accent-principal);
    padding-left: 5px;
}

.links-col ul li a i {
    font-size: 10px;
    color: var(--accent-principal);
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-col ul li i {
    color: var(--accent-principal);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 25px 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* 13. Widget Flotante de WhatsApp */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWidget 2s infinite;
}

.whatsapp-float-widget:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float-widget .tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.whatsapp-float-widget:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

@keyframes pulseWidget {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 14. Responsive Breakpoints */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 42px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar-area {
        display: none; /* Ocultamos barra sup en móviles */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Menú colapsable */
    .navigation-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark-card);
        border-bottom: 1px solid var(--border-dark);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-smooth);
        padding: 20px 0;
    }
    
    .navigation-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navigation-menu > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 20px;
    }
    
    .navigation-menu > ul > li {
        width: 100%;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        background-color: var(--bg-dark-deep);
        margin-top: 8px;
    }
    
    .whatsapp-btn-header {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero-slider-section {
        height: 80vh;
    }
    
    .slide-content h1 {
        font-size: 34px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .quote-container-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quote-info-side {
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
        padding: 30px;
    }
    
    .quote-form-side {
        padding: 30px;
    }
    
    .custom-contact-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}