.elementor-10 .elementor-element.elementor-element-79a077b{--display:flex;--padding-top:-3px;--padding-bottom:-3px;--padding-left:-3px;--padding-right:-3px;}.elementor-10 .elementor-element.elementor-element-79a077b.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-10 .elementor-element.elementor-element-79a077b{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-f96e845 *//* Reset e configurações básicas */
/* Fallback de fontes e reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    /* Define o tamanho base */
    -webkit-text-size-adjust: 100%;
    /* Previne ajuste automático no iOS */
    -ms-text-size-adjust: 100%;
    /* Previne ajuste automático no IE */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: #f8f9fa;
}

/* Força o carregamento da fonte Poppins */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevenir overflow horizontal */
.hero-content {
    overflow: hidden;
    width: 100%;
}

.hero-text {
    width: 100%;
    max-width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo span {
    color: #e74c3c;
}

.logo p {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #e74c3c;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.whatsapp-header a {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-header a:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInMobile 0.3s ease forwards;
}

.mobile-nav a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav a:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav a:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav a:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-nav a:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.mobile-whatsapp {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInMobile 0.3s ease forwards;
    animation-delay: 0.6s;
}

.mobile-whatsapp a {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.mobile-whatsapp a:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #ffd700;
    display: block;
}

.hero-title .subtitle {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #25d366;
    color: white;
}

.btn-primary:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-image img {
    width: 110%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    transform: translateX(-5%);
}

.hero-image:hover img {
    transform: translateX(-5%) scale(1.02);
}

.construction-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.construction-badge i {
    font-size: 1.1rem;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2rem;
    color: #e74c3c;
}

.highlight-item strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
}

.highlight-item span {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Diferenciais Section */
.diferenciais {
    padding: 100px 0;
    background: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.diferencial-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.diferencial-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Card destacado para "E Muito Mais!" */
.diferencial-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.diferencial-card.highlight .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.diferencial-card.highlight h3 {
    color: white;
}

.diferencial-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.diferencial-card.highlight:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    width: 100%;
}

.virtual-tour .section-header h2 {
    color: white;
}

.virtual-tour .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.tour-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.tour-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.tour-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-feature i {
    color: #FFD700;
    font-size: 1.2rem;
    min-width: 20px;
}

.tour-feature span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.tour-iframe-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 500px;
    max-width: 100%;
    box-sizing: border-box;
}

.tour-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsivo para tour virtual */
@media (max-width: 768px) {
    .virtual-tour {
        padding: 60px 0;
    }

    .virtual-tour .container {
        padding: 0 15px;
    }

    .tour-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .tour-info h3 {
        font-size: 1.5rem;
    }

    .tour-iframe-container {
        height: 300px;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .virtual-tour .container {
        padding: 0 10px;
    }

    .tour-iframe-container {
        height: 250px;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
    }

    .tour-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tour-info h3 {
        font-size: 1.3rem;
    }

    .tour-info p {
        font-size: 1rem;
    }

    .tour-feature {
        text-align: center;
    }
}

/* Location Section */
.location {
    padding: 100px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-feature i {
    font-size: 1.5rem;
    color: #e74c3c;
    width: 30px;
}

.location-feature strong {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
}

.location-feature span {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.location-map {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.btn-small {
    font-size: 0.85rem;
    padding: 8px 15px;
}

/* Responsivo para mapa */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }

    .location-map {
        border-radius: 15px;
    }

    .map-container iframe {
        border-radius: 15px;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.3rem;
    color: #ffd700;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 span {
    color: #e74c3c;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #e74c3c;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .nav {
        display: none;
    }

    .whatsapp-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 0 10px;
        width: 100%;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        transform: translateX(0);
        object-fit: cover;
        border-radius: 15px;
    }

    .hero-image:hover img {
        transform: translateX(0) scale(1.02);
    }

    .construction-badge {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .hero-bg-elements {
        display: none;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .about-highlights,
    .location-features {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Responsive para telas muito pequenas */
@media (max-width: 480px) {
    .header .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo p {
        font-size: 0.65rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .mobile-nav a {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    .mobile-whatsapp a {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-content {
        gap: 30px;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .feature {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-image {
        padding: 0 5px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }

    .construction-badge {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Subsidy Section - Specific for Essence */
.subsidy {
    padding: 100px 0;
    background: #f8f9fa;
}

.subsidy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.subsidy-requirements h3,
.subsidy-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.requirements-list li:hover {
    transform: translateX(5px);
}

.requirements-list i {
    color: #25d366;
    font-size: 1.2rem;
    min-width: 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 40px;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for subsidy section */
@media (max-width: 768px) {
    .subsidy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-number {
        align-self: center;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form .section-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-form .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.contact-form-element {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    min-width: 18px;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #6c757d;
}

.char-count {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    font-style: italic;
}

.char-count.warning {
    color: #e67e22;
}

.char-count.error {
    color: #e74c3c;
}

.form-message {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-message i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-message h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

/* Atualizar estilos dos botões de header */
.contact-header,
.mobile-contact {
    margin-left: 20px;
}

.contact-header .btn,
.mobile-contact .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsivo para formulário */
@media (max-width: 768px) {
    .contact-form {
        padding: 60px 0;
    }

    .form-container {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Evita zoom no iOS */
    }

    .contact-header,
    .mobile-contact {
        margin-left: 10px;
    }

    .contact-header .btn,
    .mobile-contact .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* ===================================
   EXIT INTENT MODAL
   =================================== */
.exit-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
    position: relative;
    overflow: hidden;
}

.exit-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #666;
    font-size: 32px;
    font-weight: bold;
    border: none;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.exit-modal-close:hover {
    background: #ff4444;
    color: white;
    transform: rotate(90deg);
}

.exit-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.exit-modal-header i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ffd700;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.exit-modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.exit-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.exit-modal-body h3 {
    color: #e74c3c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.urgency-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.modal-benefits {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid #e0e0e0;
}

.modal-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    font-size: 16px;
    color: #333;
}

.modal-benefit-item i {
    color: #27ae60;
    font-size: 20px;
    margin-right: 12px;
}

.modal-benefit-item span {
    font-weight: 500;
}

.cta-text {
    font-size: 17px;
    color: #2c3e50;
    font-weight: 600;
    margin: 25px 0 30px;
    line-height: 1.5;
}

.exit-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.exit-modal-btn i {
    font-size: 24px;
    animation: swing 1s infinite;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .exit-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .exit-modal-header {
        padding: 30px 20px 25px;
    }

    .exit-modal-header i {
        font-size: 40px;
    }

    .exit-modal-header h2 {
        font-size: 24px;
    }

    .exit-modal-body {
        padding: 30px 20px;
    }

    .exit-modal-body h3 {
        font-size: 22px;
    }

    .urgency-text {
        font-size: 16px;
    }

    .modal-benefits {
        padding: 20px 15px;
    }

    .modal-benefit-item {
        font-size: 14px;
        justify-content: flex-start;
    }

    .cta-text {
        font-size: 15px;
    }

    .exit-modal-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }

    .exit-modal-close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}/* End custom CSS */