/* ===========================================
   QUALITÀ LIMPEZAS - Ultra Modern Design
   Design impressionante com gradientes dinâmicos e micro animações
   =========================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --glass-bg: rgba(255, 255, 255, 1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.2);
    --blur-effect: blur(20px);
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-0.5deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6c757d, #495057);
    border-radius: 6px;
    border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #495057, #343a40);
}

/* Header Styles - Ultra Modern */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: headerSlideDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
}

.logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--primary-gradient);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
    filter: blur(8px);
}

.logo:hover::before {
    opacity: 0.3;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: blur(8px) brightness(1); }
    100% { filter: blur(12px) brightness(1.2); }
}

.logo::after {
    content: "✨";
    position: absolute;
    top: -8px;
    right: -30px;
    font-size: 1.4rem;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* Navigation Styles */
nav {
    display: flex;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s;
}

.nav-links li a:hover::before {
    left: 100%;
}

.nav-links li a:hover {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Hero Section */
/* Hero Section - Ultra Modern */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3a7bd5 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        conic-gradient(from 0deg at 50% 50%, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff6b6b);
    animation: rotateGradient 20s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: heroParticles 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroParticles {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.2;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    animation: heroTextGlow 2s ease-in-out infinite alternate;
    position: relative;
}

@keyframes heroTextGlow {
    0% {
        text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
        transform: translateY(0px);
    }
    100% {
        text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
        transform: translateY(-5px);
    }
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: lineExpand 1.5s ease-out 0.5s both;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons - Ultra Modern */
.cta-button {
    display: inline-block;
    background: var(--success-gradient);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: buttonPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: var(--shadow-medium);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(67, 233, 123, 0.4);
        transform: scale(1.02);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--success-gradient);
    border-radius: 62px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(67, 233, 123, 0.5);
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 0.3;
    animation: borderGlow 1.5s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { filter: blur(0px) brightness(1); }
    100% { filter: blur(8px) brightness(1.3); }
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* WhatsApp CTA Specific */
.cta-button[href*="wa.me"] {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-button[href*="wa.me"]::after {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.cta-button[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
}

/* SEO Content Section - Ultra Modern */
.seo-content {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: var(--accent-gradient);
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 100px;
        opacity: 1;
    }
}

.seo-section {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out both;
    animation-delay: calc(var(--section-delay, 0) * 0.2s);
}

.seo-section:nth-child(1) { --section-delay: 1; }
.seo-section:nth-child(2) { --section-delay: 2; }
.seo-section:nth-child(3) { --section-delay: 3; }
.seo-section:nth-child(4) { --section-delay: 4; }
.seo-section:nth-child(5) { --section-delay: 5; }

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.seo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-section:hover::before {
    opacity: 1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.seo-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 255, 255, 0.3);
}

.seo-section h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    letter-spacing: -0.02em;
}

.seo-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.seo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 3px;
    animation: titleUnderline 1s ease-out 0.5s both;
}

@keyframes titleUnderline {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.seo-section p {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
    text-shadow: none;
}

.seo-section ul {
    color: #555;
    margin-left: 25px;
    margin-bottom: 25px;
    list-style: none;
}

.seo-section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.seo-section li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    animation: sparkleList 2s ease-in-out infinite;
}

@keyframes sparkleList {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* WhatsApp CTA Between Sections - Ultra Modern */
.whatsapp-cta {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes ctaGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.whatsapp-cta .cta-button {
    position: relative;
    z-index: 1;
    animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Google Maps Section */
.maps-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.maps-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.maps-container h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.maps-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.maps-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Footer - Ultra Modern */
footer {
    background:
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 80px 30px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    animation: footerParticles 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes footerParticles {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: footerTitleGlow 2s ease-in-out infinite alternate;
}

@keyframes footerTitleGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.7;
    margin-bottom: 15px;
    display: block;
    transition: var(--transition-smooth);
    font-weight: 300;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.footer-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(79, 172, 254, 0.8);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.footer-section li:hover::before {
    color: #4facfe;
    transform: scale(1.5);
}

.footer-section li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    width: 100%;
}

.footer-section li a:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gradient);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* WhatsApp Float Button */
/* WhatsApp Float Button - Ultra Modern */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    animation: floatIn 1s ease-out 2s both;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-bounce);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: whatsappBounce 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}



.whatsapp-float a:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 30px 80px rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float a:hover::before {
    left: 100%;
}


.whatsapp-float a:active {
    transform: translateY(-5px) scale(0.95);
    transition: all 0.1s ease;
}


/* Sitemap Styles */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.category-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.category-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.city-section {
    margin-bottom: 25px;
}

.city-section h3 {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-grid {
    display: block;
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    margin-bottom: 8px;
}

.sitemap-links a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
}

.sitemap-links a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    transform: translateX(5px);
    border-color: rgba(52, 152, 219, 0.2);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.1);
}

.sitemap-total {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.sitemap-total p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.sitemap-back-link {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.sitemap-back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Ultra Modern Animations */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes magneticHover {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5px, -5px) rotate(1deg);
    }
    50% {
        transform: translate(-3px, 3px) rotate(-1deg);
    }
    75% {
        transform: translate(3px, 3px) rotate(0.5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes hologram {
    0%, 100% {
        opacity: 1;
        filter: hue-rotate(0deg);
    }
    50% {
        opacity: 0.8;
        filter: hue-rotate(180deg);
    }
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #4facfe;
    }
    50% {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 8px #fff, 0 0 12px #4facfe;
    }
}

/* Enhanced Glass Morphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .seo-section {
        padding: 25px;
    }

    .maps-container iframe {
        height: 300px;
    }
}
