/* ==========================================================================
   1. VARIÁVEIS E RESET BÁSICO
   ========================================================================== */
:root {
    --bg-dark: #141414;
    --bg-black: #050505;
    --bg-white: #ffffff;
    --primary-yellow: #F7C54C; 
    --gradient-yellow: linear-gradient(135deg, #fceb5c 0%, #f1a91a 100%);
    --text-light: #f5f5f5;
    --text-dark: #222222;
    --text-gray: #aaaaaa;
    --font-main: 'Poppins', sans-serif;
    --font-menu: 'Righteous', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--bg-dark); color: var(--text-light); overflow-x: hidden; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* Desktop Classes that should be hidden on mobile */
.mobile-header-social, .mobile-hero-nav { display: none; }

/* ==========================================================================
   2. TIPOGRAFIA GERAL
   ========================================================================== */
h1, h2, h3, h4 { font-weight: 700; font-family: var(--font-main); }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
p { line-height: 1.6; margin-bottom: 1rem; font-family: var(--font-main); }
.text-dark .section-subtitle { color: #666; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

.section-subtitle { display: inline-block; font-size: 0.9rem; color: var(--text-gray); margin-bottom: 10px; position: relative; font-family: var(--font-main);}
.section-subtitle::before { content: ''; display: inline-block; width: 30px; height: 2px; background-color: var(--primary-yellow); vertical-align: middle; margin-right: 10px; }

/* ==========================================================================
   3. COMPONENTES (Logos, Botões e Animações)
   ========================================================================== */
.logo { display: flex; align-items: center; }
.logo img { max-height: 50px; width: auto; display: block; transition: transform 0.3s ease-in-out; cursor: pointer; }
.logo:hover img { transform: scale(1.08); }

.btn { display: inline-block; padding: 12px 24px; border-radius: 5px; font-family: var(--font-menu); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.square-btn { border-radius: 0; }
.btn-full { width: 100%; }

.btn-primary { background: transparent; border: 1px solid var(--text-light); color: var(--text-light); }
.btn-primary:hover { background: var(--text-light); color: var(--bg-dark); }
.btn-outline-dark { border: 2px solid var(--text-dark); color: var(--text-dark); font-weight: 700; }
.btn-outline-dark:hover { background: var(--primary-yellow); color: var(--bg-black); border-color: var(--primary-yellow); }
.btn-outline-light { border: 1px solid var(--text-light); color: var(--text-light); }
.btn-outline-light:hover { background: var(--text-light); color: var(--bg-dark); }

.btn-solid-yellow { background-color: var(--primary-yellow); color: var(--bg-black); border: none; padding: 12px 25px; border-radius: 5px; font-family: var(--font-menu); font-weight: 600; cursor: pointer; display: inline-block; transition: background-color 0.3s ease, color 0.3s ease; text-transform: uppercase; }
.btn-solid-yellow:hover { background-color: #f1a91a; color: var(--bg-black); }

/* --- EFEITO: LINHA CONTÍNUA NOS BOTÕES --- */
.header-btn .btn-outline, .sidebar-social .btn-outline {
    position: relative; border: none; 
    background-color: transparent;
    color: var(--text-light); border-radius: 5px; padding: 10px 20px;
    display: inline-flex; justify-content: center; align-items: center;
    z-index: 1; overflow: hidden; transition: color 0.3s ease;
}
.header-btn .btn-outline:hover, .sidebar-social .btn-outline:hover { color: var(--text-light); }
.header-btn .btn-outline::before, .sidebar-social .btn-outline::before {
    content: ''; position: absolute; z-index: -2; width: 300px; height: 300px; 
    top: 50%; left: 50%; background-image: conic-gradient(transparent 75%, var(--primary-yellow) 100%);
    animation: traceBorder 4.5s linear infinite;
}
.header-btn .btn-outline::after, .sidebar-social .btn-outline::after {
    content: ''; position: absolute; z-index: -1; inset: 1px; background-color: var(--bg-black); border-radius: 4px; transition: background-color 0.3s ease; 
}
.header-btn .btn-outline:hover::after, .sidebar-social .btn-outline:hover::after { background-color: #1f1f1f; }
@keyframes traceBorder {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- LIGHTBOX --- */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.lightbox.active { opacity: 1; visibility: visible; }
#lightbox-img { max-width: 90%; max-height: 80vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--primary-yellow); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: var(--bg-white); color: var(--bg-black); border: none; width: 40px; height: 40px; font-size: 1.2rem; cursor: pointer; border-radius: 5px; transition: 0.3s; display: flex; justify-content: center; align-items: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary-yellow); }
.gallery-item img { cursor: pointer; }

/* ==========================================================================
   4. HEADER E TOP BAR 
   ========================================================================== */
.top-bar { background-color: var(--primary-yellow); width: 100%; padding: 15px 0; position: relative; z-index: 101; }
.top-bar-container { max-width: 1800px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; color: var(--bg-black); font-size: 0.8rem; font-weight: 500; }
.top-social { display: flex; gap: 15px; }
.top-social a { color: var(--bg-black); font-size: 1rem; transition: 0.3s; }
.top-social a:hover { opacity: 0.6; }
.top-info-right { display: flex; align-items: center; gap: 15px; }
.top-info-right span { display: flex; align-items: center; }
.top-info-right span i { margin-right: 6px; font-size: 0.9rem; }
.separator { opacity: 0.3; font-weight: 300; margin: 0 5px; }

#header { background-color: var(--bg-black); width: 100%; position: relative; z-index: 100; border-bottom: 2px solid var(--primary-yellow); }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; max-width: 1800px; margin: 0 auto; }
.menu-icon { color: var(--primary-yellow); font-size: 1.5rem; cursor: pointer; display: none; }

.desktop-nav ul { display: flex; align-items: center; gap: 20px; }
.desktop-nav li { display: flex; align-items: center; gap: 20px; }
.desktop-nav li:not(:last-child)::after { content: '|'; color: rgba(255,255,255,0.2); font-size: 0.8rem; font-weight: 300; }
.desktop-nav a { font-family: var(--font-menu); font-size: 0.75rem; font-weight: 400; letter-spacing: 1px; color: var(--text-light); text-transform: uppercase; position: relative; padding-bottom: 1px; transition: color 0.3s ease; }
.desktop-nav a::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 0%; height: 1px; background-color: var(--primary-yellow); opacity: 0; transition: all 0.3s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary-yellow); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; opacity: 1; }

/* ==========================================================================
   4.1 MENU LATERAL (SIDEBAR DESKTOP)
   ========================================================================== */
.sidebar { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background-color: var(--bg-dark); z-index: 1000; transition: transform 0.4s ease; padding: 40px 0; display: flex; flex-direction: column; overflow: visible; }
.sidebar-fake-header { display: none; }
.sidebar-contact-yellow { display: none; }

/* ==========================================================================
   5. SEÇÕES DA PÁGINA
   ========================================================================== */
.hero-slider { position: relative; height: 100vh; margin-top: 0; }
.slide { height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; padding: 0 5%; position: relative; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-pagination { position: absolute; bottom: 40px; left: 5%; z-index: 2; display: flex; gap: 40px; width: 90%; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.page-item { cursor: pointer; opacity: 0.5; transition: 0.3s; position: relative; }
.page-item.active, .page-item:hover { opacity: 1; }
.page-item.active::before { content: ''; position: absolute; top: -21px; left: 0; width: 100%; height: 2px; background-color: var(--primary-yellow); }
.page-item .num { display: block; font-weight: 700; margin-bottom: 5px; }
.page-item .text { font-size: 0.8rem; font-weight: 600; }

.about-section { background-color: var(--bg-white); color: var(--text-dark); padding: 100px 5%; border-radius: 0 0 100px 0; position: relative; z-index: 10; }
.about-container { display: flex; align-items: center; gap: 50px; max-width: 1600px; margin: 0 auto; }
.about-image { flex: 1; align-self: flex-end; margin-bottom: -100px; }
.about-image img { width: 100%; display: block; border-radius: 0; box-shadow: none; }
.about-text { flex: 1; }

.services-section { padding: 100px 5%; margin-top: -50px; padding-top: 120px; }
.services-container { display: flex; gap: 50px; max-width: 1600px; margin: 50px auto 0; }
.services-list { flex: 1; }
.service-item { display: flex; align-items: center; background-color: var(--bg-white); color: var(--text-dark); padding: 20px; border-radius: 40px; margin-bottom: 20px; cursor: pointer; transition: 0.3s; }
.service-item.active, .service-item:hover { background-color: var(--primary-yellow); }
.service-item .icon { font-size: 2rem; margin-right: 20px; }
.service-item .info h4 { margin-bottom: 5px; font-family: var(--font-main); }
.service-item .info p { font-size: 0.85rem; margin: 0; color: #444; font-family: var(--font-main); }
.service-item .arrow { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--text-dark); display: flex; justify-content: center; align-items: center; flex-shrink: 0;}
.service-item.active .arrow { background: var(--bg-black); color: var(--text-light); border-color: var(--bg-black); }
.services-gallery { flex: 1; display: flex; gap: 20px; }
.services-gallery img { width: 100%; border-radius: 10px; object-fit: cover; }
.img-large img { height: 600px; }

.differentials-section { background-color: var(--primary-yellow); padding: 100px 5%; color: var(--text-dark); }
.cards-carousel { display: flex; align-items: center; max-width: 1700px; margin: 40px auto 0; gap: 20px; }
.nav-arrow { cursor: pointer; font-size: 1.5rem; flex-shrink: 0; }
.nav-arrow.white-bg { background: var(--bg-white); color: var(--bg-dark); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 5px; }
.nav-arrow.gray-bg { background: #666; color: var(--bg-white); width: 30px; height: 30px; display: flex; justify-content: center; align-items: center; border-radius: 3px; }
.cards-container { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.cards-container::-webkit-scrollbar { display: none; }
.card { background-color: var(--bg-black); color: var(--text-light); padding: 40px 30px; border-radius: 10px; min-width: 280px; flex: 1; scroll-snap-align: start; }
.card-icon { font-size: 3rem; color: var(--primary-yellow); margin-bottom: 20px; }
.card h4 { margin-bottom: 15px; font-size: 1.2rem; font-family: var(--font-main);}
.card p { font-size: 0.9rem; color: #ccc; font-family: var(--font-main); }

.gallery-section { padding: 100px 5%; border-radius: 0 0 100px 0; background-color: var(--bg-dark); position: relative; z-index: 5; }
.gallery-carousel { display: flex; align-items: center; gap: 20px; max-width: 1600px; margin: 40px auto 0; }
.gallery-container { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; flex: 1; scrollbar-width: none; -ms-overflow-style: none; }
.gallery-container::-webkit-scrollbar { display: none; }
.gallery-item { min-width: calc(33.333% - 14px); scroll-snap-align: start; }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 5px; }

.clients-section { background-color: var(--bg-white); padding: 100px 5%; border-radius: 0 0 100px 0; position: relative; z-index: 6; }
.clients-section h2 { color: var(--text-dark); }
.clients-carousel { display: flex; align-items: center; gap: 20px; max-width: 1400px; margin: 50px auto; }
.clients-logos { display: flex; gap: 20px; flex: 1; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.clients-logos::-webkit-scrollbar { display: none; }
.logo-box { background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center; min-width: 200px; scroll-snap-align: start; }
.logo-box img { max-width: 150px; transition: transform 0.3s ease-in-out; cursor: pointer; }
.logo-box:hover img { transform: scale(1.08); }

.cta-section { position: relative; padding: 120px 5%; text-align: center; background-size: cover; background-position: center; background-attachment: fixed; margin-top: -50px; padding-top: 150px; }
.cta-overlay { position: relative; z-index: 2; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1; }
.cta-overlay h2 { font-size: 2.5rem; }

/* ==========================================================================
   6. FOOTER E WHATSAPP
   ========================================================================= */
.footer { background: var(--gradient-yellow); color: var(--text-dark); padding-top: 60px; position: relative; }

.contact-block-centered { text-align: center; max-width: 1600px; margin: 0 auto; padding: 0 5% 40px; border-bottom: 1px solid rgba(0,0,0,0.1); display: flex; flex-direction: column; align-items: center; }
.contact-block-centered h3 { color: var(--text-dark); margin: 20px 0 10px; }
.contact-block-centered p { color: var(--text-dark); margin: 0 0 20px; max-width: 600px; }

.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; max-width: 1600px; margin: 40px auto; padding: 0 5%; }
.footer-logo { max-width: 180px; margin-bottom: 20px; }
.brand-col .warning { font-size: 0.8rem; font-weight: 600; margin-top: 15px; }
.footer-col h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 15px; font-size: 0.9rem; }
.footer-col ul li i { margin-right: 10px; width: 15px; text-align: center; }
.footer-social { margin-top: 30px; }
.footer-social p { font-weight: 600; }
.footer-social a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; border-radius: 50%; border: 1px solid var(--text-dark); margin-right: 10px; }
.footer-social a:hover { background: var(--bg-black); color: var(--primary-yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; max-width: 1600px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.1); font-size: 0.85rem; }
.scroll-top { background: var(--bg-black); color: var(--text-light); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 1.2rem; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ==========================================================================
   7. MEDIA QUERIES (A MÁGICA DO MOBILE COMEÇA AQUI)
   ========================================================================== */
@media (max-width: 992px) {
    /* Esconde elementos exclusivos do Desktop */
    .desktop-nav, .header-btn { display: none; }
    .desktop-only { display: none !important; }
    
    /* Configurações Globais Mobile */
    .btn { text-transform: uppercase; }
    .hero-slider { margin-top: 0; }
    .about-container, .services-container { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    
    /* === 1. TOP BAR (Faixa Amarela) IDÊNTICA AO PRINT === */
    .top-bar { display: block; padding: 10px 5%; }
    .top-bar-container { flex-direction: column; text-align: center; gap: 5px; justify-content: center; }
    .top-social { display: none; } /* Oculta as redes aqui para jogar pro header */
    .top-info-right { flex-direction: row; flex-wrap: wrap; justify-content: center; font-size: 0.75rem; color: var(--bg-black); font-weight: 600; }
    .top-info-right span { margin: 2px 5px; display: inline-flex; align-items: center; }
    .top-info-right .separator { display: none; } /* Esconde o pipe entre os itens para quebrar melhor */
    
    /* === 2. HEADER IDÊNTICO AO PRINT === */
    .header-container { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 15px 5%; }
    .menu-icon { display: block; order: 1; color: var(--primary-yellow); font-size: 1.5rem; flex: 1; text-align: left; }
    .logo { order: 2; flex: 2; display: flex; justify-content: center; }
    .logo img { max-height: 40px; }
    .mobile-header-social { display: flex; order: 3; flex: 1; gap: 10px; justify-content: flex-end; }
    .mobile-header-social a { border: 1px solid white; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }
    
    /* === 3. MENU TELA CHEIA (DROPDOWN) IDÊNTICO AO PRINT === */
    .sidebar { width: 100%; height: 100vh; left: 0; top: -100vh; transform: none; background-color: var(--bg-white); overflow-y: auto; padding: 0; display: flex; flex-direction: column; transition: top 0.4s ease; }
    .sidebar.open { top: 0; transform: none; }
    
    .sidebar-fake-header { background-color: var(--bg-black); display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; border-bottom: 2px solid var(--primary-yellow); }
    .close-btn { position: static; background: transparent; color: var(--primary-yellow); opacity: 1; visibility: visible; width: auto; height: auto; font-size: 1.8rem; flex: 1; text-align: left; margin: 0; padding: 0; }
    .sidebar-fake-header img { max-height: 40px; flex: 2; object-fit: contain; }
    .sidebar-fake-header .mobile-header-social { flex: 1; justify-content: flex-end; }
    
    .sidebar-nav { width: 100%; background: var(--bg-white); margin-top: 0; padding: 0; }
    .sidebar-nav ul { align-items: flex-start; padding: 0; margin: 0; }
    .sidebar-nav li { margin: 0; width: 100%; text-align: left; padding: 0; }
    .sidebar-nav a { display: block; width: 100%; padding: 25px 5%; font-family: var(--font-menu); font-size: 1rem; color: var(--bg-black); text-transform: uppercase; border-bottom: 1px solid #f0f0f0; }
    .sidebar-nav a::after { display: none; }
    .sidebar-nav a.active { background-color: var(--primary-yellow); color: var(--bg-black); }
    
    .sidebar-contact-yellow { display: flex; background-color: var(--primary-yellow); color: var(--bg-black); padding: 40px 5%; flex-grow: 1; flex-direction: column; align-items: center; text-align: center; }
    .sidebar-contact-yellow h4 { font-family: var(--font-menu); font-size: 1.2rem; margin-bottom: 25px; color: var(--bg-black); }
    .sidebar-contact-yellow ul { display: flex; flex-direction: column; gap: 20px; font-size: 0.9rem; font-weight: 500; font-family: var(--font-main); }
    .sidebar-contact-yellow i { font-size: 1.2rem; margin-right: 8px; }
    .sidebar-footer-copy { margin-top: 50px; font-size: 0.75rem; opacity: 0.8; font-family: var(--font-main); }
    
    /* Garante que o wrapper principal não faça aquele "push" lateral no celular */
    body.menu-open #page-wrapper { transform: none; }

    /* === 4. HERO SECTION ALINHADA À ESQUERDA === */
    .hero-content { text-align: left; align-items: flex-start; padding-bottom: 80px; max-width: 100%; }
    .hero-content h1 { font-size: 2.8rem; text-align: left; }
    .hero-content p { font-size: 1rem; text-align: left; margin-bottom: 30px; }
    
    /* === 5. PAGINAÇÃO MOBILE (ANT/PRÓX) === */
    .mobile-hero-nav { display: flex; justify-content: space-between; align-items: center; position: absolute; bottom: 40px; left: 5%; width: 90%; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 20px; font-family: var(--font-menu); color: var(--bg-white); font-size: 1.2rem; font-weight: 600; }
    .nav-controls span { cursor: pointer; text-transform: uppercase; }
    .nav-controls .sep { color: var(--primary-yellow); margin: 0 15px; }
    .nav-counter { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    /* Ajustes Finais de Tamanho para Celulares Menores */
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-subtitle { font-size: 0.8rem; }
    
    /* Ajustando Margens e Paddings das Seções */
    .about-section, .services-section, .differentials-section, .gallery-section, .clients-section, .cta-section { padding: 60px 5%; }
    
    /* Imagem do copo colar embaixo no celular também */
    .about-image { margin-bottom: -60px; margin-top: 20px; width: 100%; }
    
    /* Container de Serviços */
    .services-container { margin-top: 30px; }
    .service-item { padding: 15px; border-radius: 20px; }
    .service-item .icon { font-size: 1.5rem; margin-right: 15px; }
    
    /* Ajustes nos Carrosseis (Setas menores e cards em tela inteira) */
    .card { min-width: 100%; }
    .gallery-item { min-width: 100%; }
    .logo-box { min-width: 100%; padding: 15px; }
    .nav-arrow { font-size: 1.2rem; }
    
    /* Estilos mobile para o novo bloco de contato centralizado no rodapé */
    .contact-block-centered { padding: 40px 5%; }
    .contact-block-centered h3 { font-size: 1.5rem; margin: 15px 0 8px; }
    .contact-block-centered p { font-size: 0.9rem; margin-bottom: 0; }
    .contact-block-centered .btn-solid-yellow { width: 100%; border-radius: 5px; font-size: 0.9rem; padding: 15px 20px; }
    
    /* Colunas do Rodapé em 1 só */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 20px; }
    .footer-col ul li { display: flex; align-items: center; justify-content: center; flex-direction: column; }
    .footer-col ul li i { margin-right: 0; margin-bottom: 5px; } 
    .footer-col.contact-col ul li { display: block; }
    .footer-col.contact-col ul li i { display: inline-block; margin-right: 10px; margin-bottom: 0; }
    
    /* Rodapé final e Botão do Whats */
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 100px; } 
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.8rem; bottom: 20px; right: 20px; }
}