@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800;900&display=swap');

:root {
    --primary: #1945B4;
    --primary-dark: #0B2569;
    --accent: #F9C405;
    --accent-dark: #dcae04;
    --white: #FFFFFF;
    --gray-100: #F4F7FA;
    --gray-200: #E2E8F0;
    --text-body: #334155;
    --text-light: #64748B;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-dark); line-height: 1.2; }
a { text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.bg-primary-dark { background-color: var(--primary-dark); color: var(--white); }
.bg-primary-dark h2, .bg-primary-dark h3 { color: var(--white); }
.bg-light { background-color: var(--gray-100); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-primary h2, .bg-primary h3 { color: var(--white); }

/* Changed from 120px to 80px for better vertical rhythm */
.section-padding { padding: 80px 0; }

.section-label {
    display: flex; align-items: center; gap: 15px;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary); margin-bottom: 24px;
}
.section-label::before {
    content: ''; display: block; width: 40px; height: 2px; background-color: var(--accent);
}
.section-label.light { color: var(--white); }
.section-label.light::before { background-color: var(--accent); }

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 20px;
    letter-spacing: -1px; color: var(--primary-dark); line-height: 1.2;
}
.bg-primary-dark .section-title { color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 36px; font-family: var(--font-heading); font-weight: 700;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer; position: relative; overflow: hidden; z-index: 1;
    border-radius: 8px; /* Added softer corners */
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.1); transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1;
    border-radius: 8px;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-accent { background-color: var(--accent); color: var(--white); }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-outline { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline::before { background-color: var(--white); }
.btn-outline:hover { color: var(--primary-dark); }

/* Header & Nav */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; transition: var(--transition-base);
}
.header.scrolled {
    background-color: var(--white); padding: 15px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.logo { justify-self: flex-start; }
.header nav { justify-self: center; }
.nav-actions { display: flex; align-items: center; gap: 20px; justify-self: flex-end; }

.logo img { height: 60px; transition: var(--transition-base); filter: brightness(0) invert(1); }
.header.scrolled .logo img { height: 50px; filter: none; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    color: var(--white); font-family: var(--font-heading); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; position: relative;
}
.header.scrolled .nav-links a, 
.header.scrolled .btn-mobile-trigger { color: var(--primary-dark); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background-color: var(--accent); transition: var(--transition-base);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.btn-mobile-trigger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Mobile Menu Base */
.mobile-menu { display: none; }

/* Hero Section with KEN BURNS effect */
.hero {
    height: 85vh; min-height: 600px; position: relative; display: flex; align-items: center; background-color: var(--primary-dark); overflow: hidden;
}
.hero-video-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; background-color: var(--primary-dark);
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; opacity: 0.8;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(11,37,105,0.95) 0%, rgba(25,69,180,0.8) 50%, rgba(25,69,180,0.4) 100%);
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; max-width: 800px; color: var(--white); margin-top: 50px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
.hero p { font-size: clamp(1rem, 1.25vw, 1.15rem); color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 650px; line-height: 1.5; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7); animation: fadeIn 3s ease-in-out;
}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-heading); font-weight: 600; }
.scroll-indicator .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.7); border-radius: 14px; position: relative; }
.scroll-indicator .mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background-color: rgba(255,255,255,0.7); border-radius: 4px;
    animation: scrollWheel 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 22px; opacity: 0; } }
@keyframes fadeIn { 0%, 50% { opacity: 0; } 100% { opacity: 1; } }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } /* Gap reduced */
.about-image { position: relative; }
.about-image img { box-shadow: 20px 20px 0 var(--accent); position: relative; z-index: 2; border-radius: 12px; }
.about-image::before {
    content: ''; position: absolute; top: -30px; left: -30px; width: 50%; height: 50%;
    background-color: var(--gray-200); z-index: 1; border-radius: 12px;
}
.about-text h2 { margin-bottom: 30px; }
.about-text p { font-size: 1.1rem; margin-bottom: 24px; color: var(--text-body); }

/* Services Section Watermark */
#especialidades { position: relative; overflow: hidden; }
#especialidades::before {
    content: ''; position: absolute; bottom: -80px; right: -80px;
    width: 700px; height: 700px; background-image: url('imagem/logosemfundo.png');
    background-size: contain; background-position: bottom right; background-repeat: no-repeat;
    opacity: 0.05; filter: grayscale(100%); pointer-events: none; z-index: 0;
}
#especialidades .container { position: relative; z-index: 1; }

/* Services Carousel */
.services-header { margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.services-header p { max-width: 600px; font-size: 1.1rem; color: var(--text-light); }

.carousel-wrapper { position: relative; padding: 0 50px; margin-top: 40px; }
.services-carousel {
    display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
    padding-bottom: 20px;
}
.services-carousel::-webkit-scrollbar { display: none; }

.service-item { 
    position: relative; height: 450px; background-color: var(--primary-dark); 
    overflow: hidden; border-radius: 12px;
    flex: 0 0 calc(33.333% - 20px); scroll-snap-align: start;
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background-color: var(--white); color: var(--primary-dark);
    border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 1.2rem; cursor: pointer; z-index: 10;
    transition: var(--transition-base); display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background-color: var(--accent); color: var(--white); transform: translateY(-50%) scale(1.05); }
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

.service-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.service-item:hover .service-bg { transform: scale(1.08); }

.service-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11,37,105,0.95) 0%, rgba(11,37,105,0.4) 45%, rgba(11,37,105,0) 100%);
    z-index: 1; transition: var(--transition-base); opacity: 0.9;
}
.service-item:hover .service-overlay { background: linear-gradient(to top, rgba(11,37,105,1) 0%, rgba(11,37,105,0.7) 60%, rgba(11,37,105,0) 100%); }

.service-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    z-index: 2; transition: var(--transition-base); display: flex; flex-direction: column; justify-content: flex-end;
}

.service-content h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; display: flex; align-items: center; gap: 0; }
.service-content h3 i { display: none; }
.service-content p { color: rgba(255,255,255,0.95); font-size: 1.05rem; line-height: 1.5; margin-bottom: 0; }
.service-item:hover .service-content { transform: translateY(-5px); }

/* Diferenciais Section (Now White Background) */
.why-section { background-color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.stat-box { border-top: 1px solid var(--gray-200); padding-top: 24px; }
.stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.stat-text { font-size: 0.95rem; font-weight: 600; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; }

/* Compromisso */
.compromise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.comp-item { display: flex; gap: 30px; }
.comp-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--accent); opacity: 0.9; line-height: 1.1; flex-shrink: 0; }
.comp-item h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.comp-item p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.6; }

/* CTA Split Layout */
.cta-split { display: flex; flex-wrap: wrap; overflow: hidden; border-top: 1px solid var(--gray-200); }
.cta-image { flex: 1 1 50%; min-height: 380px; background-size: cover; background-position: center; }
.cta-text { flex: 1 1 50%; padding: 50px 6%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
@media (max-width: 900px) {
    .cta-image { flex: 1 1 100%; min-height: 250px; }
    .cta-text { flex: 1 1 100%; padding: 40px 5%; }
}

/* Footer & CTA */
.footer-cta { text-align: center; }
.footer-cta h2 { color: var(--white); margin-bottom: 20px; font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -1px; line-height: 1.2; }
.footer-cta p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto;}

footer { background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(5,20,60, 0.95) 100%); color: var(--white); position: relative; overflow: hidden; }
footer::before {
    content: ''; position: absolute; bottom: -100px; right: -50px;
    width: 800px; height: 800px; background-image: url('imagem/logosemfundo.png');
    background-size: contain; background-position: bottom right; background-repeat: no-repeat;
    opacity: 0.03; filter: grayscale(100%) invert(1); pointer-events: none; z-index: 0;
}
.footer-main { position: relative; z-index: 1; padding: 80px 5% 60px; display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr 1.3fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
.footer-map iframe { width: 100%; height: 200px; border-radius: 8px; filter: grayscale(10%) contrast(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.footer-logo img { height: 70px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-desc { color: rgba(255,255,255,0.7); max-width: 400px; font-size: 1rem; }
.footer-title { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; color: var(--white); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.4; }
.footer-contact i { color: var(--accent); margin-top: 4px; font-size: 1.1rem; }
.footer-bottom { background-color: #081B4F; padding: 30px 5%; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; position: relative; z-index: 1; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-text { order: -1; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .service-item { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .header .container { display: flex; justify-content: space-between; }
    .nav-links, .header .btn-accent { display: none; }
    .btn-mobile-trigger { display: block; }
    .header.mobile-open { background-color: var(--white); }
    .header.mobile-open .btn-mobile-trigger, .header.mobile-open .logo img { color: var(--primary-dark); }
    .header.mobile-open .logo img { filter: none; }

    /* Mobile Menu Drawer */
    .mobile-menu {
        display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background-color: var(--white); padding: 20px 5% 40px;
        flex-direction: column; gap: 15px;
        transform: translateX(100%); transition: var(--transition-base); z-index: 1010;
        overflow-y: auto; text-align: left;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--gray-200); padding-bottom: 15px; }
    .mobile-menu-logo { height: 45px; }
    .mobile-menu #mobile-close {
        color: var(--primary-dark); font-size: 2rem; display: block; background: none; border: none; cursor: pointer;
    }
    .mobile-menu a:not(.btn) {
        font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
        color: var(--primary-dark); text-transform: uppercase;
        border-bottom: 1px solid var(--gray-100); padding-bottom: 12px; margin-bottom: 5px;
        text-decoration: none;
    }

    .carousel-wrapper { padding: 0; margin-right: -5%; /* Break container boundary for snap */ overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-padding-left: 20px; }
    .carousel-btn { display: none; }
    .service-item { flex: 0 0 85%; height: auto; min-height: 380px; margin-right: 15px; scroll-snap-align: start; }
    .service-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
    .service-content h3 i { display: none; } /* Remove icons */
    .why-grid { gap: 30px; }
    .compromise-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Subpages & Specialty Grid */
.page-hero { height: 45vh; min-height: 450px; position: relative; display: flex; align-items: flex-start; justify-content: flex-start; background-color: var(--primary-dark); color: var(--white); overflow: hidden; padding-top: 180px; }
.page-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(11,37,105,0.95), rgba(25,69,180,0.7)); z-index: 1; }
.page-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%); opacity: 0.3; will-change: opacity, transform; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: left; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 15px; letter-spacing: -1px; line-height: 1.15; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 650px; line-height: 1.5; }
.breadcrumb { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 25px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: rgba(0,0,0,0.25); padding: 8px 16px; border-radius: 4px; border-left: 3px solid var(--accent); width: fit-content; max-width: 100%; }
.breadcrumb a { color: var(--white); text-decoration: none; opacity: 0.8; transition: var(--transition-fast); }
.breadcrumb a:hover { opacity: 1; color: var(--accent); }
.breadcrumb i { font-size: 0.7rem; opacity: 0.5; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.spec-card { border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition-base); display: flex; flex-direction: column; text-decoration: none; }
.spec-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.spec-card-img { height: 250px; background-size: cover; background-position: center; }
.spec-card-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.spec-card-body h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary-dark); }
.spec-card-body h3 i { color: var(--accent); margin-right: 10px; }
.spec-card-body p { color: var(--text-body); margin-bottom: 25px; flex-grow: 1; }
.spec-single-content h2.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.spec-single-content h2.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.spec-single-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 80px; align-items: stretch; overflow: hidden; }
.spec-images-grid {
    position: relative;
    width: 100%; max-width: 400px;
    height: 550px;
    margin: 0 auto;
}
.spec-images-grid img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.4s ease, z-index 0s;
}
.spec-images-grid img:hover { transform: scale(1.03); z-index: 10 !important; }

/* Overlapping configuration */
.spec-images-grid img:nth-child(1) { top: 0; left: 0; width: 65%; height: 220px; z-index: 2; }
.spec-images-grid img:nth-child(2) { top: 60px; right: 0; width: 55%; height: 260px; z-index: 1; }
.spec-images-grid img:nth-child(3) { bottom: 80px; left: 10%; width: 50%; height: 220px; z-index: 3; }
.spec-images-grid img:nth-child(4) { bottom: 0; right: 5%; width: 68%; height: 240px; z-index: 2; border: 3px solid var(--white); }
.wpp-form-wrapper { margin-top: 40px; background: rgba(11,37,105, 0.03); padding: 30px; border-radius: 12px; border: 1px solid var(--gray-200); }
.wpp-form-wrapper h4 { margin-bottom: 20px; color: var(--primary-dark); font-family: var(--font-heading); }
.wpp-form { display: flex; flex-direction: column; gap: 15px; }
.wpp-form input, .wpp-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; color: var(--primary-dark); transition: var(--transition-base); }
.wpp-form input:focus, .wpp-form textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(25,69,180,0.1); }
.spec-feature-list { list-style: none; margin-top: 30px; margin-bottom: 40px; }
.spec-feature-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 500; font-size: 1.05rem; color: var(--primary-dark); }
.spec-feature-list i { color: var(--accent); font-size: 1.2rem; }
@media (max-width: 900px) { .spec-single-grid { grid-template-columns: 1fr; } .page-hero { min-height: 350px; height: auto; padding-bottom: 70px; padding-top: 140px; } .spec-images-grid { margin: 40px auto; } }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 15px; z-index: 1000; text-decoration: none; }
.whatsapp-message { background-color: var(--white); color: var(--primary-dark); padding: 10px 18px; border-radius: 20px; font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); box-shadow: 0 5px 15px rgba(0,0,0,0.15); position: relative; display: inline-block; opacity: 0; transform: translateX(20px); visibility: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.whatsapp-float:hover .whatsapp-message { opacity: 1; visibility: visible; transform: translateX(0); }
.whatsapp-message::after { content: ''; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); border-width: 8px 0 8px 8px; border-style: solid; border-color: transparent transparent transparent var(--white); }
.whatsapp-icon { background-color: #25D366; color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; position: relative; animation: wppPulse 2s infinite; }
.whatsapp-icon::after { content: '1'; position: absolute; top: -2px; right: -2px; background-color: #FF3B30; color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: bold; font-family: sans-serif; border: 2px solid white; z-index: 2; }
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.1); animation: none; }
@keyframes wppPulse { 0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } 50% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(37,211,102,0.6); } 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } }
@media (max-width: 768px) { .whatsapp-message { display: none; } .whatsapp-float { bottom: 20px; right: 20px; } .whatsapp-icon { width: 50px; height: 50px; font-size: 26px; } }
