:root {
    --primary-color: #ff4306;
    --secondary-color: #f7f4ee;
    --border-color: #e5eaef;
    --white: #ffffff;
    --black: #020000;
    --gray: #48535d;
    --light-gray: #eef0f3;
    --green: #35b871;
    --orange: #f4511e;
    --padding-horizontal: 0 13vw;
    --padding-section: 120px 13vw;
    --padding-button: 12px 24px;
    --border: 1px solid var(--border-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

body {
    color: var(--black);
}

/* ========================================
   HERO SECTION - RESPONSIVA E MODERNA
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/src/images/Foto\ LP\ comprimida\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 5vw, 80px);
    overflow: hidden;
}

/* Overlay escuro para melhor contraste */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(2, 0, 0, 0.7) 0%,
            rgba(2, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    gap: clamp(24px, 4vh, 40px);
}

.hero-image {
    display: none;
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-button {
    padding: var(--padding-button);
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MEDIA QUERIES - RESPONSIVIDADE
======================================== */

/* Desktop grande (1400px+) */
@media (min-width: 1400px) {
    .hero-section {
        padding: 120px 80px;
    }
}

/* Desktop médio (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .hero-section {
        padding: 100px 60px;
    }
}

/* Tablet landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .hero-section {
        min-height: 90vh;
        padding: 80px 40px;
    }

    .hero-content {
        gap: 28px;
    }
}

/* Tablet portrait e Mobile (até 767px) */
@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        background-image: none;
        background-color: #020000;
        padding: 60px 24px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-image {
        display: block;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.1;
    }

    .hero-description {
        font-size: clamp(15px, 4vw, 20px);
        line-height: 1.5;
    }

}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 16px;
    }

}

/* Mobile extra pequeno (até 360px) */
@media (max-width: 360px) {
    .hero-section {
        padding: 32px 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }
}

/* Ajustes para altura de tela pequena */
@media (max-height: 600px) {
    .hero-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-content {
        gap: 20px;
    }
}

/* Modo paisagem em mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 24px;
    }

    .hero-content {
        gap: 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }
}

/* ========================================
   DIFERENCIAIS
======================================== */
.diferenciais {
    background: var(--secondary-color);
    padding: var(--padding-section);
}

.diferenciais h4 {
    color: #666;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
}

.conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.caixa-laranja {
    background: var(--orange);
    color: var(--white);
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50vw;
}

.caixa-laranja p {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: bold;
    margin: 0;
}

.caixa-laranja p:first-child {
    color: var(--black);
}

.caixa-laranja p:last-child {
    font-weight: normal;
}

.cards-diferenciais {
    display: flex;
    flex-direction: column;
}

.card-diferenciais {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 30px 20px;
    font-size: 16px;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
}

.card-diferenciais:first-child {
    border: 2px solid var(--border-color);
    border-radius: 16px 16px 0 0;
}

#card-diferenciais-med {
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.card-diferenciais:last-child {
    border: 2px solid var(--border-color);
    border-radius: 0 0 16px 16px;
}

.card-diferenciais i {
    color: var(--orange);
    font-size: 32px;
    flex-shrink: 0;
}

/* ========================================
   CONTROLE
======================================== */
.controle {
    padding: var(--padding-section);
}

.topo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.topo h2 {
    color: var(--orange);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    text-align: right;
    margin-right: 20px;
}

.baloes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.balon {
    background: var(--light-gray);
    padding: 20px 30px;
    border: var(--border);
    border-radius: 16px 16px 16px 0;
    font-size: 15px;
}

#balon1 {
    max-width: 250px;
}

#balon2 {
    max-width: 200px;
}

#balon3 {
    max-width: 300px;
}

.institucional {
    text-align: center;
}

.logo-tag {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    border-radius: 32px;
    padding: 12px 22px;
    margin-bottom: 20px;
}

.institucional h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--gray);
    line-height: 1.4;
}

.cards-controle {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-controle {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 30px;
    flex: 1;
    min-width: 230px;
    max-width: 300px;
    text-align: center;
}

.card-controle h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-controle p {
    font-size: 14px;
    color: #555;
}

/* ========================================
   ALERTA
======================================== */
.alerta {
    background: var(--black);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 8vw, 13vw);
    text-align: center;
}

.icones {
    margin-bottom: 40px;
    font-size: 48px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.alerta h2 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: bold;
    color: #b2b2b2;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.alerta h2 span {
    color: var(--white);
}

/* ========================================
   CONTAINER USERS
======================================== */
.container-users {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding-section);
    gap: 60px;
    background: var(--gray);
}

.text-content {
    max-width: 400px;
}

.text-content h1 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.4;
}

.usee {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #dcdcdc;
}

.highlight {
    background: var(--black);
    color: var(--light-gray);
    padding: 24px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

.note {
    font-size: 14px;
    color: var(--border-color);
    font-weight: 200;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.slide-image-content {
    display: flex;
    justify-content: right;
}

.slide-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.slide-image-content-mobile {
    display: none;
}

.slide-image-content-mobile img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ========================================
   PRODUCTS
======================================== */
.products-content {
    padding: clamp(60px, 8vw, 120px) clamp(20px, 8vw, 13vw) 0;
    background: var(--secondary-color);
}

.products-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    margin-bottom: 56px;
}

.products-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
}

.product {
    font-size: 16px;
    color: var(--black);
    background: var(--white);
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.product.active {
    background: var(--border-color);
}

.image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: clamp(20px, 8vw, 13vw);
    display: none;
    min-height: 400px;
    align-items: center;
    position: relative;
}

.image-container.active {
    display: flex;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, transparent 0%, var(--secondary-color) 100%);
    pointer-events: none;
}

.box {
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: clamp(24px, 5vw, 64px);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.image-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    margin-bottom: 16px;
}

.image-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
}

/* ========================================
   CARDS
======================================== */
.cards {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 8vw, 13vw);
    background: var(--white);
    text-align: center;
    border: 1px solid var(--border-color);
}

.title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.smartphone-bg {
    background-image: url('/src/images/smartphone.jpg');
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--padding-button);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e63900;
}

/* ========================================
   FAQ
======================================== */
.questions {
    padding: clamp(60px, 8vw, 120px) clamp(20px, 8vw, 13vw);
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--black);
}

.help-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #4a5568;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    position: relative;
}

.chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #718096;
    border-bottom: 2px solid #718096;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.faq-item.active .chevron::before {
    transform: translate(-50%, -50%) rotate(225deg);
    border-color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px 0;
}

.faq-answer-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    padding-right: 36px;
}

/* ========================================
   FOOTER
======================================== */
.container-footer {
    padding: 32px 13vw;
    ;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.information-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.endereco {
    text-align: right;
}

.info {
    font-size: 14px;
    line-height: 1.5;
}

.service-description-2 {
    padding-top: 24px;
    border-top: 1px solid #333;
    margin-top: 24px;
    opacity: 0.8;
    font-size: 14px;
}

/* ========================================
   CARROSSEL COM ABAS
======================================== */
.carousel-section {
    padding: 120px 5vw;
    background-color: var(--secondary-color);
}

.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-button {
    display: flex;
    width: 190px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 67, 6, 0.15);
}

.tab-button.active {
    background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 67, 6, 0.2);
}

.tab-button i {
    font-size: 24px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 0;
    gap: 20px;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.slide-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.feature-item span {
    display: flex;
    text-align: left;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.slide-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 67, 6, 0.3);
    align-self: flex-start;
}

.slide-button:hover {
    background-color: #e03a05;
    box-shadow: 0 6px 20px rgba(255, 67, 6, 0.4);
    transform: translateY(-2px);
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.dashboard-preview:hover {
    transform: scale(1.05);
}

.dashboard-placeholder {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 320px;
}

.dashboard-icon {
    width: 96px;
    height: 96px;
    background: #ffede5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-color);
}

.dashboard-text {
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    background-color: var(--secondary-color);
    width: 32px;
    height: 32px;
    border: 1px solid var(--black);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 300ms;
    z-index: 10;
}

.carousel-nav:hover {
    transform: scale(1.05);
}

.carousel-nav-prev {
    left: 16px;
}

.carousel-nav-next {
    right: 16px;
}

.carousel-nav i {
    font-size: 24px;
    color: #374151;
}

/* ========================================
   TABELA COMPARATIVA
======================================== */
.comparison-section {
    padding: 120px 16px;
    background: var(--white);
}

.comparison-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    margin-bottom: 48px;
    color: var(--black);
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-rodape {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

.header-item {
    padding: 20px;
    text-align: center;
}

.header-item.acquisition {
    background-color: #0f0d0d;
}

.header-item.empty {
    background-color: #020000;
}

.header-item.rental {
    background: var(--orange);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: var(--secondary-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-label {
    display: flex;
    align-items: left;
    gap: 12px;
    padding: 24px;
    font-weight: 500;
    color: var(--black);
}

.row-label i {
    font-size: 24px;
    color: var(--gray);
}

.row-medium {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.row-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.status-icon.positive {
    background: var(--green);
    color: var(--white);
}

.status-icon.negative {
    background: #ff4757;
    color: var(--white);
}

/* ========================================
   MODAL DE PRIVACIDADE
======================================== */
.privacy-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(4px);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.privacy-modal.show {
    display: block;
}

.leaflet-ping {
    background: #ff4306;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    position: relative;
    box-shadow: 0 0 12px #ff4306;
    animation: pulse 1.5s infinite;
}

#mapa-oeste-sc {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 8vw, 13vw);
    background-color: var(--gray);
}

#map {
    height: 500px;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--white);
}

.mapa-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
}

.leaflet-bottom.leaflet-right {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-modal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.privacy-modal-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}

.privacy-modal-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.privacy-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.privacy-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.privacy-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.privacy-btn-primary:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 67, 6, 0.3);
}

.privacy-btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--border-color);
}

.privacy-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    border: none;
}


.privacy-link {
    display: flex;
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    padding-top: 24px
}

/* ========================================
   MEDIA QUERIES
======================================== */

/* Tablets e dispositivos médios */
@media (min-height: 768px) {
    .hero-title {
        line-height: 1.1;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .carousel-slide {
        flex-direction: row;
        align-items: center;
        padding: 0 160px;
    }

    .slide-content {
        padding-left: 32px;
    }
}

/* Mobile - até 1024px */
@media (max-width: 1024px) {
    .slide-image-content img {
        display: none;
    }

    .slide-image-content-mobile {
        display: flex;
        justify-content: center;
    }

    .slide-image-content-mobile img {
        display: block;
    }
}

/* Mobile - até 768px */
@media (max-width: 1080px) {

    .conteudo {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .caixa-laranja {
        width: 100%;
    }
}


@media (max-width: 768px) {

    .topo {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .topo h2 {
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .balon {
        max-width: 100%;
    }

    .container-users {
        flex-direction: column;
        gap: 10px;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
    }

    .slide-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .information-contact {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .endereco {
        text-align: center;
    }

    .products-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .faq-answer-content {
        padding-right: 20px;
    }

    .help-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }

    .row-label {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 16px;
        gap: 8px;
    }

    .row-label span {
        font-size: 13px;
    }

    .row-value {
        flex-direction: column;
        padding: 16px 8px;
        font-size: 12px;
    }

    .header-item {
        padding: 16px 8px;
        font-size: 14px;
    }

    .status-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .carousel-nav {
        top: 20%;
        width: 40px;
        height: 40px;
    }

    .carousel-nav i {
        font-size: 20px;
    }

    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .tabs-navigation {
        gap: 12px;
    }

    .tab-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .tab-button i {
        font-size: 20px;
    }

    .slide-title {
        font-size: 1.875rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .privacy-modal {
        padding: 16px;
    }

    .privacy-modal-content {
        padding: 24px;
    }

    .privacy-modal-title {
        font-size: 20px;
    }

    .privacy-modal-text {
        font-size: 14px;
    }

    .privacy-modal-buttons {
        flex-direction: column;
        width: 100%;
    }

    .privacy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile pequeno - até 480px */
@media (max-width: 480px) {
    .icones {
        margin-bottom: 20px;
    }

    .cards-controle {
        flex-direction: column;
        align-items: center;
    }

    .card-controle {
        max-width: 100%;
    }

    .faq-question {
        padding: 16px 0;
        font-size: 14px;
    }

    .faq-answer-content {
        font-size: 13px;
        padding-right: 16px;
    }

    .help-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

.leaflet-top {
    display: none;
}