/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fff5f7 100%);
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 50%, #fce4ec 100%);
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #87ceeb;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    text-align: center;
}

.logo a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.logo-text {
    background: linear-gradient(45deg, #4a90e2, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 25%, #fce4ec 50%, #fdf2f4 75%, #87ceeb 100%);
    color: #2c3e50;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: 400% 400%;
    animation: heroGradientShift 8s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.05), rgba(252, 228, 236, 0.05));
    z-index: 1;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2, #5ba3f5, #2c5aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(135, 206, 235, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(135, 206, 235, 0.2);
    border: 2px solid rgba(135, 206, 235, 0.3);
    display: inline-block;
}

@keyframes titleGlow {
    from { text-shadow: 0 2px 4px rgba(135, 206, 235, 0.3); }
    to { text-shadow: 0 2px 8px rgba(135, 206, 235, 0.4), 0 0 20px rgba(252, 228, 236, 0.3); }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #2caae0, #5ec4f0);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 170, 224, 0.3);
    border: 2px solid rgba(248, 196, 212, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 170, 224, 0.4);
    background: linear-gradient(45deg, #5ec4f0, #2caae0);
    border-color: #fad4e0;
}

.hero-image {
    text-align: center;
}

.placeholder-image {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fff5f7 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(44, 170, 224, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #2caae0, #5ec4f0, #f8c4d4, #fad4e0);
    border-radius: 23px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(44, 170, 224, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(248, 196, 212, 0.4);
    }
}

/* Animated Hero Card */
.animated-hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card-content {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-emoji-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-emoji {
    font-size: 4rem;
    display: block;
    animation: emojiFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(44, 170, 224, 0.2));
}

.emoji-particles {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    color: #2caae0;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
    color: #f8c4d4;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 70%;
    animation-delay: 3s;
    color: #5ec4f0;
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) scale(1.1) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) scale(0.9) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) scale(1.1) rotate(270deg);
        opacity: 1;
    }
}

.hero-card-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(44, 170, 224, 0.1);
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 249, 255, 0.9) 50%, rgba(255, 245, 247, 0.9) 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 170, 224, 0.1);
    transition: all 0.3s ease;
    animation: featureSlideIn 0.6s ease-out both;
    border: 1px solid rgba(44, 170, 224, 0.1);
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(44, 170, 224, 0.2);
    background: linear-gradient(135deg, rgba(44, 170, 224, 0.05) 0%, rgba(248, 196, 212, 0.05) 100%);
    border-color: rgba(44, 170, 224, 0.3);
}

.feature-emoji {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-card-decoration {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    border-radius: 1px;
    animation: lineGrow 2s ease-out;
}

.decoration-circle {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #5ec4f0, #fad4e0);
    border-radius: 50%;
    animation: circlePulse 2s ease-in-out infinite;
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 50%, #f0f8ff 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2caae0, #f8c4d4, #5ec4f0);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.location-text > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.location-details {
    display: grid;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 170, 224, 0.1);
    transition: all 0.3s ease;
    animation: locationItemSlide 0.6s ease-out both;
    border: 1px solid rgba(44, 170, 224, 0.1);
}

.location-item:nth-child(1) { animation-delay: 0.1s; }
.location-item:nth-child(2) { animation-delay: 0.2s; }
.location-item:nth-child(3) { animation-delay: 0.3s; }

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 170, 224, 0.2);
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    border-color: rgba(44, 170, 224, 0.3);
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-item div {
    line-height: 1.5;
}

.location-item strong {
    color: #333;
    font-weight: 600;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 170, 224, 0.15);
    animation: mapSlideIn 0.8s ease-out;
    border: 2px solid rgba(44, 170, 224, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

@keyframes locationItemSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mapSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Business Profile Section */
.business-profile {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.business-profile h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-profile iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* SEO Content */
.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(44, 170, 224, 0.1);
    border: 1px solid rgba(44, 170, 224, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #2caae0, #f8c4d4);
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* WhatsApp CTA */
.whatsapp-cta {
    text-align: center;
    margin: 3rem 0;
}

.whatsapp-cta .cta-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #4ade80);
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid rgba(74, 222, 128, 0.6);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(45deg, #4ade80, #25d366);
    border-color: #86efac;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a4a5a 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2caae0, #f8c4d4, #5ec4f0);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
    border-bottom: 2px solid #2caae0;
    padding-bottom: 0.5rem;
}

.footer-section p,
.footer-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section a {
    color: #5ec4f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2caae0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f8f9ff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5ec4f0, #fad4e0);
}

/* Sitemap Styles */
.sitemap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.sitemap h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2caae0, #f8c4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sitemap > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #666;
}

.sitemap-section {
    margin-bottom: 4rem;
}

.sitemap-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    border-bottom: 3px solid #2caae0;
    padding-bottom: 0.5rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.sitemap-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2caae0;
}

.sitemap-category ul {
    list-style: none;
    columns: 3;
    column-gap: 2rem;
}

.sitemap-category li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.sitemap-category a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.sitemap-category a:hover {
    color: #2caae0;
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Micro-animations */
.content-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.cta-button,
.whatsapp-float a {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.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.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.whatsapp-float a:hover::before {
    left: 100%;
}
