:root {
    /* Cores Vibrantes baseadas no Novo Logo */
    --primary-blue: #0A66C2; /* Azul sólido principal do tubarão */
    --vivid-blue: #0084FF; /* Azul mais brilhante para destaques */
    --dark-blue: #073B73; /* Azul bem escuro para textos */
    --yellow: #FFE600; /* Amarelo sol vibrante do fundo do logo */
    --orange: #FF5A00; /* Laranja choque do aro do logo */
    --green: #1A823B; /* Verde intenso da raquete */
    
    --text-dark: #1A202C; /* Um tom de cinza/azul escuro, mais suave que preto */
    --text-light: #4A5568;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(10, 102, 194, 0.08); /* Sombras levemente azuladas */
    --shadow-md: 0 10px 15px rgba(10, 102, 194, 0.12);
    --shadow-lg: 0 20px 25px rgba(10, 102, 194, 0.18);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background-color: var(--bg-white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark-blue); font-weight: 800; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utilitários Clássicos */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-light-blue { background-color: var(--primary-blue); color: white; }
.bg-blue { background-color: var(--primary-blue); }
.bg-orange { background-color: var(--orange); }
.bg-yellow { background-color: var(--yellow); }
.bg-green { background-color: var(--green); }
.text-center { text-align: center; }
.text-orange { color: var(--orange) !important; }
.text-blue { color: var(--primary-blue) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-green { color: var(--green) !important; }
.text-white { color: var(--bg-white) !important; }
.text-light { color: #A0AEC0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Estilização Dinâmica de Fundo */
.bg-gradient-brand { background: linear-gradient(135deg, var(--orange) 0%, var(--primary-blue) 100%); }
.pattern-bg {
    background-image: radial-gradient(var(--vivid-blue) 2px, transparent 2px);
    background-size: 30px 30px;
    background-color: var(--primary-blue);
}
.bg-glass-blue { background: rgba(10, 102, 194, 0.85); backdrop-filter: blur(10px); }
.content-box-glass { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); }

/* Titulos Emblemas */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; display: inline-flex; align-items: center; gap: 15px; }
.underline { height: 6px; width: 80px; background: linear-gradient(90deg, var(--yellow), var(--orange)); margin: 15px auto 0; border-radius: 3px; }
.underline.bg-white { background: var(--yellow); }
.underline.bg-green { background: linear-gradient(90deg, var(--green), var(--yellow)); }

/* Botões Energéticos */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-weight: 700; font-family: var(--font-heading); border-radius: 50px; cursor: pointer; transition: var(--transition); border: none; gap: 10px; font-size: 1.05rem; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--orange); color: var(--bg-white); box-shadow: 0 8px 20px rgba(255, 90, 0, 0.35); border: 2px solid var(--orange); }
.btn-primary:hover { background-color: #E65100; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 90, 0, 0.45); }
.btn-secondary { background-color: var(--yellow); color: var(--dark-blue); box-shadow: 0 8px 20px rgba(255, 230, 0, 0.35); border: 2px solid var(--yellow); }
.btn-secondary:hover { background-color: #F0D700; transform: translateY(-3px); }

/* Outline Buttons para Docs */
.btn-outline-blue { background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); }
.btn-outline-blue:hover { background: var(--primary-blue); color: white; }
.btn-outline-yellow { background: transparent; border: 2px solid #D4B400; color: #D4B400; }
.btn-outline-yellow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark-blue); }
.btn-outline-orange { background: transparent; border: 2px solid var(--orange); color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: white; }

/* Dropdown para Balancetes */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: white; box-shadow: var(--shadow-md); border-radius: 8px; z-index: 10; overflow: hidden; margin-top: 5px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-item { display: block; padding: 12px 15px; color: var(--dark-blue); text-decoration: none; font-weight: 600; transition: var(--transition); border-bottom: 1px solid #edf2f7; text-align: center; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: var(--yellow); color: var(--dark-blue); }

/* Efeito Pulso no Botão */
.pulse-btn { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn { 
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(255, 90, 0, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); } 
}

/* Header & Navegação */
.header { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); box-shadow: var(--shadow-sm); z-index: 1000; transition: var(--transition); padding: 12px 0; }
.header.scrolled { padding: 8px 0; box-shadow: var(--shadow-md); background-color: rgba(255, 255, 255, 1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* Logomarca Imagens */
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--primary-blue); overflow: hidden; }
.logo-img-header { max-height: 55px; width: auto; object-fit: contain; }
.logo-img-footer { max-height: 60px; width: auto; object-fit: contain; }
.logo-circle-large { width: 120px; height: 120px; background: linear-gradient(135deg, var(--yellow), var(--orange)); border-radius: 50%; justify-content: center; align-items: center; font-size: 3.5rem; color: var(--primary-blue); }
.logo-circle-small { width: 40px; height: 40px; background: linear-gradient(135deg, var(--yellow), var(--orange)); border-radius: 50%; justify-content: center; align-items: center; font-size: 1.2rem; }

@keyframes floatLogo { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }

.nav-menu ul { display: flex; gap: 5px; }
.nav-menu a { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); padding: 10px 14px; border-radius: 8px; transition: var(--transition); }
.nav-menu a:hover { color: var(--primary-blue); background-color: rgba(10, 102, 194, 0.08); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--primary-blue); cursor: pointer; }

/* HERO - Impactante */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background-image: url('imagens/foto2.png'); background-size: cover; background-position: center; background-attachment: fixed; margin-top: 0; padding: 120px 0 60px; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(7, 59, 115, 0.4), rgba(0, 0, 0, 0.2)); }
.hero-content { position: relative; z-index: 2; color: white; max-width: 1200px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.hero-logo-box { flex: none; display: flex; justify-content: center; width: 100%; margin-bottom: -15px; }
.hero-logo-box .logo-img-hero { max-height: 180px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }
.hero-text-wrapper { flex: none; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 1000px; }
.hero h1 { font-size: 4.5rem; color: white; margin-bottom: 10px; text-shadow: 2px 4px 8px rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 2px; line-height: 1.1; width: 100%; }
.hero h2 { font-size: 2.2rem; color: var(--yellow); margin-bottom: 30px; font-weight: 600; text-shadow: 1px 2px 4px rgba(0,0,0,0.5); }
.hero-text-box { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.5); padding: 30px 40px; border-radius: var(--border-radius); margin-bottom: 40px; font-size: 1.25rem; font-style: italic; line-height: 1.6; box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--primary-blue); font-weight: 600; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Sombra na Sessão História */
.shadow-section { position: relative; z-index: 10; box-shadow: 0 15px 40px rgba(0,0,0,0.15), inset 0 20px 40px rgba(0,0,0,0.1); }

/* Regras em Cards Modernos */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.rule-item { text-align: center; padding: 40px 25px; background: var(--bg-white); border-radius: var(--border-radius); box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 5px solid transparent; }

.rule-item.color-blue { background: linear-gradient(to bottom, #ffffff 50%, rgba(10, 102, 194, 0.12)); border-bottom-color: var(--primary-blue); border-top: 2px solid rgba(10, 102, 194, 0.05); }
.rule-item.color-green { background: linear-gradient(to bottom, #ffffff 50%, rgba(26, 130, 59, 0.12)); border-bottom-color: var(--green); border-top: 2px solid rgba(26, 130, 59, 0.05); }
.rule-item.color-yellow { background: linear-gradient(to bottom, #ffffff 50%, rgba(255, 230, 0, 0.2)); border-bottom-color: var(--yellow); border-top: 2px solid rgba(255, 230, 0, 0.05); }
.rule-item.color-orange { background: linear-gradient(to bottom, #ffffff 50%, rgba(255, 90, 0, 0.12)); border-bottom-color: var(--orange); border-top: 2px solid rgba(255, 90, 0, 0.05); }

.rule-item:hover { box-shadow: var(--shadow-md); transform: translateY(-8px) scale(1.02); }
.rule-icon { width: 80px; height: 80px; background: rgba(10, 102, 194, 0.1); color: var(--primary-blue); font-size: 2.2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 25px; transition: var(--transition); }
.rule-icon-img { width: 100px; height: 100px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; background: transparent; box-shadow: var(--shadow-md); transition: var(--transition); border: 3px solid var(--bg-white); }
.rule-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.rule-item:hover .rule-icon-img { transform: scale(1.1) rotate(2deg); box-shadow: var(--shadow-lg); }
.hover-underline:hover { text-decoration: underline; }
.rule-item h4 { margin-bottom: 15px; font-size: 1.3rem; }

/* Blobs de Fundo no Associados */
.blob-bg { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15; z-index: 0; }
.blob-1 { top: -50px; left: -100px; width: 400px; height: 400px; background-color: var(--orange); }
.blob-2 { bottom: -100px; right: -50px; width: 300px; height: 300px; background-color: var(--primary-blue); }

.content-box { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 50px; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); max-width: 850px; margin: 0 auto; position: relative; z-index: 2; }
.content-box.border-orange { border: 2px solid rgba(255, 90, 0, 0.2); }
.benefit-list li { padding: 15px 0; display: flex; align-items: flex-start; gap: 20px; font-size: 1.15rem; font-weight: 500; }
.icon-circle { width: 35px; height: 35px; min-width: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; margin-top: 3px; }

/* Grid de Imagens - Galeria e Info */
.history-content { display: flex; gap: 60px; align-items: center; flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
#historia .section-title h2 { font-size: 3.0rem; }
.history-text { flex: 1; }
.history-text.content-box-glass { background: rgba(255, 255, 255, 0.95); color: var(--text-dark); border: none; box-shadow: var(--shadow-lg); font-weight: 500; }
.history-text.content-box-glass p strong { color: var(--primary-blue); font-weight: 800; }
.history-text p { margin-bottom: 20px; font-size: 1.05rem; }
.history-image { flex: 1; position: relative; }
.history-image::before { content:''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 4px solid var(--yellow); border-radius: var(--border-radius); z-index: 0; }
.history-image img { width: 100%; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); position: relative; z-index: 1; object-fit: cover; aspect-ratio: 4/3; }

.history-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; position: relative; z-index: 1; max-width: 850px; margin: 0 auto; }
.history-gallery::before { display: none; }
.history-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); margin: 0; transition: var(--transition); }
.history-gallery img:hover { transform: scale(1.05); box-shadow: var(--shadow-md); z-index: 2; position: relative; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.card { background: var(--bg-white); padding: 35px; border-radius: var(--border-radius); box-shadow: var(--shadow-md); transition: var(--transition); border-top: 5px solid var(--primary-blue); }
.card:nth-child(1) { border-top-color: var(--orange); }
.card:nth-child(2) { border-top-color: var(--yellow); }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.card-date { display: inline-block; padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.card h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--dark-blue); }

.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.doc-card { background: var(--bg-white); padding: 45px 35px; text-align: center; border-radius: var(--border-radius); box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.doc-card:hover, .doc-card:focus-within { z-index: 50; }
.doc-card.border-top-blue { border-top: 5px solid var(--primary-blue); }
.doc-card.border-top-yellow { border-top: 5px solid var(--yellow); }
.doc-card.border-top-orange { border-top: 5px solid var(--orange); }
.doc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.doc-icon { font-size: 3.5rem; margin-bottom: 25px; }
.doc-card h3 { margin-bottom: 15px; font-size: 1.6rem; }
.doc-card p { margin-bottom: 30px; color: var(--text-light); flex-grow: 1; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--border-radius); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-grid img:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); z-index: 2; position: relative; }

.events-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 25px; }
.event-item { display: flex; background: var(--bg-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.event-item.border-left-blue { border-left: 6px solid var(--primary-blue); }
.event-item.border-left-orange { border-left: 6px solid var(--orange); }
.event-item:hover { transform: translateX(10px); box-shadow: var(--shadow-lg); }
.event-date { padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 120px; color: white; }
.event-date .day { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 1.1rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-top: 5px; }
.event-details { padding: 30px; }
.event-details h3 { margin-bottom: 12px; font-size: 1.4rem; }

/* Formulário de Contato e Info */
.contact-wrapper { display: flex; gap: 0; background: var(--bg-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 1050px; margin: 0 auto; }
.contact-info { flex: 1; padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.contact-info h3 { color: var(--yellow); margin-bottom: 25px; font-size: 2rem; }
.contact-details { margin-top: 40px; }
.contact-details li { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; font-size: 1.15rem; font-weight: 500; }
.contact-details i { font-size: 1.5rem; width: 30px; text-align: center; }
.social-links { display: flex; gap: 15px; margin-top: auto; padding-top: 30px; }
.social-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.15); display: flex; justify-content: center; align-items: center; border-radius: 50%; color: white; font-size: 1.3rem; transition: var(--transition); }
.social-icon:hover { background: var(--orange); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(255, 90, 0, 0.4); }
.contact-form-container { flex: 1.5; padding: 60px 50px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--dark-blue); font-size: 1.05rem; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 2px solid #E2E8F0; border-radius: 12px; font-family: inherit; font-size: 1.05rem; transition: var(--transition); background: #F7FAFC; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-blue); background: white; box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.15); }

/* Footer */
.footer { background: var(--dark-blue); color: white; padding: 70px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 15px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.footer-nav ul { display: flex; gap: 30px; }
.footer-nav a { color: rgba(255,255,255,0.7); font-weight: 500; transition: var(--transition); font-size: 1.05rem; }
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; }

/* WhatsApp flutuante */
.float-whatsapp { position: fixed; bottom: 35px; right: 35px; background-color: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 38px; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.float-whatsapp:hover { background-color: #1ebe57; transform: scale(1.15) rotate(-5deg); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }

/* Animações */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-up { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }
.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Responsividade Aprimorada */
@media (max-width: 1024px) {
    .nav-menu ul { gap: 0; }
    .nav-menu a { padding: 10px 8px; font-size: 0.85rem; }
}

@media (max-width: 900px) {
    .nav-menu ul { display: none; }
    .menu-toggle { display: block; }
    .nav-menu.active ul { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 25px 20px; box-shadow: var(--shadow-md); gap: 10px; border-radius: 0 0 15px 15px; }
    .nav-menu.active a { display: block; padding: 12px; border-radius: 8px; font-size: 1.05rem; }
    .nav-menu.active a:hover { background: var(--bg-light); color: var(--orange); }
    .history-content { flex-direction: column; gap: 40px; }
    .history-image::before { display: none; }
    .contact-wrapper { flex-direction: column; }
    .hero-content { flex-direction: column; text-align: center; gap: 20px; }
    .hero-logo-box { justify-content: center; }
    .hero-text-wrapper { align-items: center; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 3.5rem; }
    .hero-text-box { font-size: 1.15rem; }
}

@media (max-width: 600px) {
    #historia .section-title h2 { font-size: 2.0rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero h2 { font-size: 1.5rem; }
    .hero-logo-box .logo-img-hero { max-height: 220px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .content-box { padding: 35px 25px; }
    .contact-info, .contact-form-container { padding: 40px 25px; }
    .footer-top { flex-direction: column; gap: 25px; }
    .footer-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .section { padding: 60px 0; }
    .float-whatsapp { width: 55px; height: 55px; font-size: 32px; bottom: 25px; right: 25px; }
}
