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

:root {
    --primary-color: #FFB900;
    --primary-dark: #E6A600;
    --secondary-color: #2A2A2A;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --background: #F5F5F5;
    --border-light: #E5E5E5;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #FFB900 0%, #E6A600 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    filter: none;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/bghero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Initial state for animations */
.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: fallbackFadeIn 0.5s ease-out 1s forwards;
}

.hero-visual {
    opacity: 0;
    transform: translateX(50px);
    animation: fallbackFadeIn 0.5s ease-out 1.2s forwards;
}

/* Fallback animation caso o JavaScript falhe */
@keyframes fallbackFadeIn {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Garantir visibilidade em caso de falha do JS */
.no-js .hero-content,
.no-js .hero-visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 5rem);
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.hero-image:hover .hero-img {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(-50%) scale(1.1);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite;
}

.scroll-arrow {
    animation: arrowBounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes mouseWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0.5;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(3px);
    }
    60% {
        transform: translateY(1px);
    }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 185, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 185, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.hero-btn {
    padding: 1rem 3rem;
}

/* Section Two */
.section-two {
    padding: 5rem 0;
    background: var(--white);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-left .section-title {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.split-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.image-residential,
.image-commercial {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-smooth);
}

.image-residential {
    transform: translateY(-20px);
}

.image-commercial {
    transform: translateY(20px);
}

.image-residential:hover,
.image-commercial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.split-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    opacity: 1; /* Garantir visibilidade inicial */
    transform: translateY(0); /* Estado inicial estável */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.features-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.features-text p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--white);
}

.section-title.center {
    text-align: center;
    margin-bottom: 3rem;
}

.products-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    padding: 10px 0 5px 0;
    margin: -10px 0 -5px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 0 2rem;
}

.product-slide {
    flex: 0 0 300px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '🔍';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.25rem 1.5rem;
    margin: 0;
    color: var(--text-dark);
    font-size: 1.125rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    min-height: 100px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:not(:disabled):hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 185, 0, 0.3);
}

.products-cta {
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-image-container {
    position: relative;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    max-height: 80vh;
}

.modal-title-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: none;
    backdrop-filter: blur(10px);
    max-width: calc(100% - 2rem);
    word-wrap: break-word;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.modal-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    pointer-events: all;
}

.modal-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Section Two */

/* Map & Coverage Section */
/* --- MAP/CITIES SPLIT LAYOUT --- */
.map-coverage-section {
    padding: 6rem 0;
    background: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.map-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    opacity: 0.9;
}
.map-coverage-split {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 2;
                min-height: 340px;
                width: 100%;
}
.map-coverage-left {
                    width: 100%;
                    max-width: 900px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: flex-start;
                    height: auto;
                    margin: 0 auto;
}
.map-coverage-right {
                display: none;
}
/* Remove highlights box styles */
.section-header {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
}
.map-coverage-section .section-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFB900, #FF8C00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}
.map-container-modern {
                position: relative;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.1);
                margin-bottom: 0;
                min-height: 500px;
                height: 500px;
                width: 100%;
                max-width: 900px;
                margin: 0 auto;
}
.map-container-modern iframe {
                display: block;
                filter: contrast(1.1) saturate(1.2);
                min-height: 500px;
                height: 500px;
                width: 100%;
                max-width: 900px;
                margin: 0 auto;
}
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.location-badge {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.location-badge svg {
    color: #FFB900;
}
.coverage-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: center;
}
.areas-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
}
.area-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 1rem 0.5rem;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 48px;
}
.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 185, 0, 0.1), transparent);
    transition: left 0.6s ease;
}
.area-card:hover::before {
    left: 100%;
}
.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(255, 185, 0, 0.2);
    border-color: rgba(255, 185, 0, 0.3);
}
.area-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.area-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .map-coverage-split {
        gap: 1.5rem;
    }
}
@media (max-width: 900px) {
            .map-coverage-split {
                flex-direction: column;
                gap: 2.5rem;
                min-height: unset;
            }
            .map-coverage-left, .map-coverage-right {
                padding-top: 0;
                align-items: center;
                text-align: center;
                height: unset;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
            .map-coverage-right {
                min-width: 0;
                max-width: 100%;
                height: auto;
            }
            .coverage-box-modern {
                margin-top: 1.5rem;
                max-width: 100%;
                padding: 1rem 1rem;
            }
            .map-container-modern, .map-container-modern iframe {
                min-height: 220px;
                height: 220px;
            }
            .section-header {
                text-align: center;
                margin-bottom: 2rem;
            }
}
@media (max-width: 600px) {
    .map-coverage-section {
        padding: 3rem 0;
    }
    .map-coverage-split {
        flex-direction: column;
        gap: 2rem;
    }
    .map-container-modern {
        border-radius: 16px;
    }
    .areas-list {
        max-width: 100%;
        gap: 1rem;
    }
    .area-card {
        padding: 1rem 0.5rem;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-info p {
    color: #CCCCCC;
    margin: 0;
}

.whatsapp-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.whatsapp-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 185, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 0.875rem;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding-top: 4rem;
        min-height: 100vh;
        padding-bottom: 2rem;
        background-attachment: scroll;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
        min-height: calc(100vh - 6rem);
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
        line-height: 1.1;
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        margin-bottom: 1.5rem;
        max-width: 90%;
        text-align: center !important;
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
        max-width: 90%;
        text-align: center;
    }

    .cta-button.hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .split-images {
        height: 300px;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .image-residential,
    .image-commercial {
        transform: translateY(0);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .feature-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .product-slide {
        flex: 0 0 250px;
        margin-right: 0.75rem;
    }

    .carousel-track {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .carousel-container {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-info h3 {
        font-size: 1.1rem;
    }

    .footer-info p {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
    }

    .area-tags {
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .coverage-areas {
        padding: 0 1rem;
        margin-top: 0.5rem;
    }
    
    /* Modal responsiveness */
    .modal-image-container {
        min-height: 300px;
    }
    
    .modal-navigation {
        padding: 0 0.5rem;
    }
    
    .modal-btn {
        width: 40px;
        height: 40px;
    }

    .modal-title-overlay {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        top: 0.75rem;
        left: 0.75rem;
        max-width: calc(100% - 1.5rem);
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: calc(100vh - 5rem);
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        line-height: 1.1;
        text-align: center !important;
        width: 100%;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 4vw, 1rem) !important;
        margin-bottom: 1.25rem;
        text-align: center !important;
    }

    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }

    .cta-button.hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
        max-width: 300px;
    }

    .feature-card {
        padding: 1.25rem 0.75rem;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .product-slide {
        flex: 0 0 240px;
    }

    .product-card {
        height: 280px;
    }

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1rem;
        min-height: 80px;
        padding: 1rem;
    }

    .split-images {
        height: 250px;
        gap: 0.5rem;
    }

    .carousel-track {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .coverage-areas {
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .map-coverage-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .map-wrapper {
        margin-bottom: 3rem;
    }

    .map-container-modern {
        border-radius: 16px;
    }

    .map-overlay {
        top: 15px;
        left: 15px;
    }

    .location-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-card {
        padding: 1.5rem;
    }

    .coverage-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .map-container {
        margin-bottom: 0.5rem;
        height: 200px;
    }

    .whatsapp-float-btn {
        width: 45px;
        height: 45px;
    }

    .nav-container {
        padding: 0.75rem;
    }

    .logo img {
        height: 32px;
    }

    .scroll-indicator {
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .mouse-icon {
        width: 20px;
        height: 36px;
    }

    .mouse-wheel {
        width: 3px;
        height: 6px;
        top: 6px;
    }

    .scroll-arrow {
        width: 14px;
        height: 8px;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.1;
        text-align: center !important;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        text-align: center !important;
    }

    .cta-button {
        font-size: 0.75rem;
        padding: 0.65rem 0.85rem;
    }

    .cta-button.hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1rem 0.5rem;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .product-slide {
        flex: 0 0 200px;
    }

    .container {
        padding: 0 0.5rem;
    }

    .nav-container {
        padding: 0.5rem;
    }

    .area-row {
        gap: 0.75rem;
        flex-direction: column;
    }

    .area-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        width: 200px;
        text-align: center;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .product-card,
    .feature-card {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}