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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-dark);
    overflow-x: hidden;
}

/* Variáveis CSS */
:root {
       --primary-color: #FF7043; /* Um laranja mais quente e moderno */;
    --primary-light: #FF9800; /* Um laranja mais claro para gradientes */
    --primary-dark: #E65100; /* Um laranja mais escuro para profundidade */
    --black: #000000;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --gray: #666666;
  
    --gray-dark: #4A4A4A; /* Um cinza mais suave para textos */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}


/* Utilitários */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Botões */
.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), );
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}
.btn-btn-primary .btn-popup{
        position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #353535 100%);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.footer .logo-img {
    height: 80px!important; /* Altura otimizada para o cabeçalho compacto */
    width: auto !important;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
}



.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}







.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.benefit-item strong {
    color: var(--white);
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.benefit-item small {
    color: #ccc;
    font-size: 14px;
}









/* Posts Preview */
.posts-preview {
    width: 100%;
    max-width: 400px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.post-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.post-card:nth-child(3) {
    grid-column: 1 / -1;
}

.post-image {
    font-size: 40px;
    margin-bottom: 10px;
}

.post-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.post-content p {
    font-size: 12px;
    color: #ccc;
}

/* Swiper Customization */
.swiper-pagination {
    position: relative;
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}



/* Form Card */
.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    color: var(--black);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.form-card p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 14px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-form input {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--black);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.signup-form small {
    color: var(--gray);
    font-size: 12px;
    text-align: center;
}


/* Serviços Especiais */
.special-services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 102, 0, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 14px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Funcionalidades */
.features {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.feature-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.feature-category h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Benefícios */
.benefits {
    padding: 70px 0;
    background: black;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.benefits .section-header {
    position: relative;
    z-index: 2;
}

/* .benefits .section-header h2 {

} */

.benefits .section-header h2::after {
    background: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
}

/* Segmentos */
.segments {
    padding: 100px 0;
    background: var(--gray-light);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.segment-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.segment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.segment-image {
    font-size: 48px;
    margin-bottom: 20px;
}

.segment-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.segment-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Planos */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 102, 0, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 1.2rem;
    color: var(--gray);
    margin-right: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Depoimentos */
.testimonials {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info h4 {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.author-info span {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Final */
.final-cta {
  background: #111;
  border-radius: 15px;
  padding: 20px 30px;
  margin: 40px auto;
  max-width: 1100px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-content {
  display: flex;
  justify-content: space-between; /* texto à esquerda, botão à direita */
  align-items: center;
  gap: 20px;
}

.cta-text h2 {
  font-size: 20px;
  margin: 0 0 5px;
}

.cta-text p {
  margin: 0;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  flex-direction: column; /* força empilhar */
  align-items: center;    /* centraliza botão e small */
  text-align: center;
  
}

.cta-buttons .btn-orange {
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-buttons .btn-orange:hover {
  background: #e65500;
}

.cta-buttons small {
  margin-top: -5px; /* espaço entre botão e texto */
  font-size: 12px;
  color: #bbb;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section .logo {
    margin-bottom: 20px;
}

.footer-section .logo .logo-img {
    height: 40px !important;
    max-width: 250px !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
 
    
    .form-card {
        padding: 24px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
    }
}




.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--black);
}

.modal-content {
    padding: 0 40px 20px;
}

.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.features-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.feature-modal-item {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-modal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-modal-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.feature-modal-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 30px -40px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.modal-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-popup {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.btn-popup .btn-icon {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-popup:hover .btn-icon {
    transform: scale(1.2);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-container {
        margin: 10px;
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-content {
        padding: 0 25px 15px;
    }
    
    .modal-tabs {
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .tab-icon {
        font-size: 1rem;
    }
    
    .features-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-modal-item {
        padding: 20px;
    }
    
    .feature-modal-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .feature-modal-content h4 {
        font-size: 1.1rem;
    }
    
    .modal-footer {
        padding: 25px;
    }
    
    .modal-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .features-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-modal-item {
        padding: 15px;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}


/* Otimizações UX/UI Adicionais */

/* Melhorias nos botões */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hover effects melhorados para cards */
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Animações para elementos que entram na viewport */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Melhorias no header */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Micro-animações para ícones */
.feature-icon,
.benefit-icon,
.service-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon,
.benefit-item:hover .benefit-icon,
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Melhorias nos formulários */
.signup-form input,
.signup-form select {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.signup-form input:focus,
.signup-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Melhorias na tipografia */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll suave personalizado */
html {
    scroll-behavior: smooth;
}

/* Melhorias no carrossel */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    color: var(--primary-color);
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

/* Melhorias nos testimonials */
.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Efeitos de parallax sutil */


/* Melhorias na acessibilidade */
.btn:focus,
.modal-close:focus,
.tab-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Preloader para imagens */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Melhorias no footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}

/* Otimizações para dispositivos touch */
.touch-device .btn:hover {
    transform: none;
}

.touch-device .feature-item:hover {
    transform: none;
}

/* Estados de erro para formulários */
.form-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-error + .error-message {
    display: block;
}

/* Melhorias na performance */
* {
    will-change: auto;
}

.btn,
.feature-item,
.modal-container {
    will-change: transform;
}

/* Dark mode support (preparação) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --bg-color: #1a1a1a;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/* ===== MELHORIAS PROFISSIONAIS UX/UI ===== */

/* Melhorias no menu mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 20px 40px;
        flex-direction: column;
        gap: 24px;
        transform: translateY(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        background: rgba(255, 102, 0, 0.1);
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 8px;
    }
}


/* Melhorias no formulário */
.form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.signup-form input,
.signup-form select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signup-form input:focus,
.signup-form select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.signup-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.signup-form input:focus::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

/* Estados de validação */
.signup-form input.valid {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.signup-form input.invalid {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Melhorias nos botões CTA */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Melhorias nos cards de benefícios */
.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.benefit-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-number {
    transform: scale(1.1);
}

/* Melhorias na seção de features */
.features {
   
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

/* Melhorias nos testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Melhorias no footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Melhorias na performance e suavidade */

.features,
.benefits,
.testimonials {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Otimizações para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .feature-icon,
    .benefit-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Estados de carregamento melhorados */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Melhorias na acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible para melhor acessibilidade */
.btn:focus-visible,
.nav a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}


/* Transições suaves para mudanças de tema */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

/* Otimizações finais */
.container {
    position: relative;
    z-index: 1;
}

/* Melhorias no carregamento de imagens */
img {
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img:not(.loaded) {
    opacity: 0;
}



/* ===== NOVA SEÇÃO DE MARKETING - PLANOS E SERVIÇOS ===== */
.marketing-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.marketing-section:nth-child(even) {
    background-color: #f8f9fa;
}

.marketing-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.marketing-section.reverse .marketing-content {
    flex-direction: row-reverse;
}

.marketing-text {
    flex: 1;
    max-width: 500px;
}

.marketing-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.marketing-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
}

.marketing-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff7301 0%, #f8ae59 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Mockup do Celular */
.marketing-section .phone-mockup {
    width: 200px;
    height: 360px;
    background: linear-gradient(145deg, #000000, #272727);
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.marketing-section .phone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-title {
    font-weight: 600;
    font-size: 14px;
}

.app-status {
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
}

.app-content {
    padding: 15px;
    flex: 1;
}

.marketing-section .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.marketing-section .menu-item:last-child {
    border-bottom: none;
}

.marketing-section .item-image {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.marketing-section .item-details h4 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #333;
}

.marketing-section .item-details p {
    font-size: 11px;
    margin: 0;
    color: #ff6b35;
    font-weight: 600;
}

/* Ícone do Assistente */
.assistant-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
}

.assistant-icon.left {
    left: 30px;
    right: auto;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #000000);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.robot-emoji {
    font-size: 32px;
}

.marketing-section .chat-bubble {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 120px;
}

.marketing-section .chat-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.assistant-icon.left .chat-bubble::before {
    left: auto;
    right: 20px;
}

.marketing-section .chat-bubble p {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Widget de Analytics */
.analytics-widget {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
    z-index: 3;
}

.chart-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#ff6b35 0deg 270deg, #e0e0e0 270deg 360deg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.chart-inner {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
}

.analytics-widget p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

/* Painel de Notificações */
.notifications-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.notification-item:hover {
    transform: translateX(5px);
}

.notification-item.whatsapp {
    border-left: 4px solid #25D366;
}

.notification-item.instagram {
    border-left: 4px solid #E4405F;
}

.notification-item.facebook {
    border-left: 4px solid #1877F2;
}

.notification-item.site {
    border-left: 4px solid #ff6b35;
}

.notification-item.telefone {
    border-left: 4px solid #6c757d;
}

.notification-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-text .platform {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: block;
}

.notification-text p {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: #666;
}

/* Link de CTA */
.marketing-section .btn-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.marketing-section .btn-link:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.marketing-section .btn-link .arrow {
    transition: transform 0.3s ease;
}

.marketing-section .btn-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsividade da Nova Seção */
@media (max-width: 1024px) {
    .marketing-content {
        gap: 40px;
    }
    
    .marketing-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .marketing-section {
        padding: 60px 0;
    }
    
    .marketing-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .marketing-section.reverse .marketing-content {
        flex-direction: column;
    }

    .marketing-text {
        max-width: 100%;
    }

    .marketing-text h2 {
        font-size: 28px;
    }

    .marketing-text p {
        font-size: 16px;
    }

    .visual-container {
        height: 300px;
        padding: 20px;
    }

    .marketing-section .phone-mockup {
        width: 160px;
        height: 280px;
    }

    .assistant-icon {
        top: 20px;
        right: 20px;
    }

    .assistant-icon.left {
        left: 20px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .robot-emoji {
        font-size: 24px;
    }

    .analytics-widget {
        bottom: 20px;
        right: 20px;
    }

    .chart-circle {
        width: 60px;
        height: 60px;
    }

    .chart-inner {
        width: 45px;
        height: 45px;
    }

    .percentage {
        font-size: 12px;
    }

    .notifications-panel {
        min-width: 200px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .marketing-text h2 {
        font-size: 24px;
    }

    .marketing-text p {
        font-size: 14px;
    }

    .visual-container {
        height: 250px;
        padding: 15px;
    }

    .marketing-section .phone-mockup {
        width: 140px;
        height: 240px;
    }
}




.plans-comparison-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fc7a00 0%, #ff8839 100%);
    border-radius: 12px;
    color: white;
}

.feature-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.plan-column {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.plan-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    opacity: 0.8;
}

.plan-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.cardapio-digital {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.intelligence-pro {
    border: 2px solid #000000;
    background: black;
}

.comparison-section {
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.section-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.comparison-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#ff6600 0%, #fc8236 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-details h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.feature-details p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.plan-status {
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.plan-status.yes {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.plan-status.no {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.add-more-section {
    margin: 40px 0;
    text-align: center;
}

.add-more-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    
    color: #ff6600;
    background: white;
}

.add-more-btn:hover {
    background: #ff6600;
    color: white;
    transform: translateY(-2px);
}

.add-more-btn.active {
    background: #ff6600;
    color: white;
}

.add-more-btn .btn-icon {
    margin-right: 8px;
    font-size: 18px;
}

.additional-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #e0e0e0;
}

.modal-footer {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.modal-cta h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.modal-cta p {
    margin: 0 0 25px 0;
    font-size: 16px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-popup {
    position: relative;
    overflow: hidden;
}

.btn-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-popup:hover::before {
    left: 100%;
}

.btn-icon {
    margin-left: 8px;
    font-size: 16px;
}

/* Responsividade para o modal de planos */
@media (max-width: 768px) {
    .plans-modal {
        width: 98%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .table-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .table-header {
        padding: 15px;
    }
    
    .plan-column {
        margin-bottom: 10px;
    }
    
    .feature-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .plan-status {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 15px;
    }
    
    .feature-details h5 {
        font-size: 14px;
    }
    
    .feature-details p {
        font-size: 12px;
    }
    
    .section-title h4 {
        font-size: 16px;
    }
    
    .modal-cta h3 {
        font-size: 20px;
    }
}

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

.comparison-row.animate-in {
    animation: slideInUp 0.5s ease forwards;
}

/* Melhorias visuais */
.plan-status:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

.comparison-row:nth-child(even) {
    background: #fafbfc;
}

.comparison-row:nth-child(odd) {
    background: white;
}




/* Nova Seção de Marketing */
.marketing-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.marketing-section.reverse {
    background-color: #fff;
}

.marketing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.marketing-section.reverse .marketing-content {
    grid-template-columns: 1fr 1fr;
}

.marketing-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.marketing-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.btn-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link .arrow {
    transition: transform 0.3s ease;
}

.btn-link:hover .arrow {
    transform: translateX(5px);
}

.marketing-visual {
    position: relative;
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #111;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    background: #fff;
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-title {
    font-weight: 600;
    color: #333;
}

.app-status {
    font-size: 0.8rem;
    color: #4caf50;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.item-image {
    font-size: 2rem;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.item-details p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.assistant-icon {
    position: absolute;
    bottom: 20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.robot-emoji {
    font-size: 2rem;
}

.chat-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.analytics-widget {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.chart-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 75%, #f0f0f0 0);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.chart-inner {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.notifications-panel {
    width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text .platform {
    font-weight: 600;
    color: #333;
}

.notification-text p {
    color: #666;
    font-size: 0.9rem;
}

.assistant-icon.left {
    bottom: 20px;
    left: -30px;
}




.design-plans

/* Container do Modal */
.design-plans-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.design-plans-modal-overlay.active .design-plans-modal {
    transform: scale(1) translateY(0);
}

/* Header do Modal */
.design-plans-modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.design-plans-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.design-plans-modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Botão de Fechar */
.design-plans-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.design-plans-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Conteúdo do Modal */
.design-plans-modal-content {
    padding: 40px 30px;
}

/* Grid de Planos */
.design-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Card de Plano */
.design-plan-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.design-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.design-plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.design-plan-card:hover::before {
    transform: scaleX(1);
}

/* Badge de Plano Popular */
.design-plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Ícone do Plano */
.design-plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    color: var(--white);
}

/* Título do Plano */
.design-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

/* Preço do Plano */
.design-plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.design-plan-period {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Descrição do Plano */
.design-plan-description {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Lista de Recursos */
.design-plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.design-plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.design-plan-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Botão do Plano */
.design-plan-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.design-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Plano Destacado */
.design-plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.design-plan-card.featured .design-plan-btn {
    background: var(--black);
}

.design-plan-card.featured .design-plan-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Seção de Garantia */
.design-plans-guarantee {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.design-plans-guarantee h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.design-plans-guarantee p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .design-plans-modal {
        width: 95%;
        margin: 20px;
    }
    
    .design-plans-modal-header {
        padding: 25px 20px;
    }
    
    .design-plans-modal-header h2 {
        font-size: 1.8rem;
    }
    
    .design-plans-modal-content {
        padding: 30px 20px;
    }
    
    .design-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .design-plan-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .design-plans-modal-header h2 {
        font-size: 1.6rem;
    }
    
    .design-plan-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .design-plan-title {
        font-size: 1.3rem;
    }
    
    .design-plan-price {
        font-size: 1.8rem;
    }
}



.phone-mockup {
  width: 320px;
  height: 640px;
  border: 10px solid #000;
  border-radius: 40px;
  background: #111;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de flutuar ao passar o mouse */
.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Tela */
.phone-mockup .screen {
  width: 100%;
  height: 100%;
  
  overflow: hidden;
}

/* Vídeo */
.phone-mockup .screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





/* Estilos para o carrossel de posts promocionais */
.posts-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.post-promo-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.post-promo-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.post-promo-img:hover::before {
    opacity: 1;
}

.post-promo-img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.3);
}

.post-promo-img:nth-child(1) {
    animation-delay: 0.7s;
}

.post-promo-img:nth-child(2) {
    animation-delay: 0.8s;
}

.post-promo-img:nth-child(3) {
    animation-delay: 0.9s;
}



@media (max-width: 576px) {
    .posts-carousel {
        gap: 15px;
        max-width: 250px;
    }

    .post-promo-img {
        border-radius: 8px;
    }

    

  
    .benefit-item {
        padding: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Melhorias adicionais de UX/UI */
@media (hover: hover) {
    .posts-carousel {
        perspective: 1000px;
    }
    
    .post-promo-img:hover {
        transform: translateY(-8px) scale(1.03) rotateX(5deg);
    }
}

/* Animação de entrada para as imagens */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.post-promo-img {
    animation: slideInFromRight 0.6s ease-out forwards;
    opacity: 0;
}

/* Loading state para as imagens */
.post-promo-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.post-promo-img[src] {
    background: none;
    animation: slideInFromRight 0.6s ease-out forwards;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}





.cardapio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}








@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Efeito de brilho sutil */
.cardapio-img {
    animation: subtleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    from {
        filter: brightness(1) saturate(1);
    }
    to {
        filter: brightness(1.05) saturate(1.1);
    }
}


img:not(.loaded) {
    opacity: 1;
}

/* ===== MELHORIAS DE RESPONSIVIDADE ===== */

/* Correção do container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Corrigido de 'fixed' para 'relative' */
}

/* Melhorias para tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Header melhorado para tablet */
    .header {
        padding: 12px 0;
    }
    
    .nav a {
        font-size: 14px;
        margin: 0 12px;
    }
    
    /* Carrossel ajustado para tablet */
    .carousel-container {
        height: 80vh;
        min-height: 600px;
    }
    
    /* Modais melhorados para tablet */
    .modal-container {
        max-width: 90%;
        margin: 2rem auto;
        max-height: 90vh;
    }
    
    .plans-modal {
        max-width: 95%;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    /* Grid layouts melhorados */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Melhorias para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header mobile melhorado */
    .header {
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .nav a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Carrossel mobile melhorado */
    .carousel-container {
        height: 100vh;
        padding-top: 60px; /* Espaço para header fixo */
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .slide-content {
        order: 1;
    }
    
    .visual-element {
        order: 2;
        margin-top: 2rem;
    }
    
    .circle-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .slide-number {
        font-size: 2.5rem;
    }
    
    .slide-total {
        font-size: 0.9rem;
    }
    
    /* Controles de navegação mobile */
    .navigation-controls {
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }
    
    .controls-container {
        padding: 12px 20px;
        gap: 16px;
        border-radius: 25px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Modais mobile melhorados */
    .modal-container {
        width: 95%;
        max-width: none;
        margin: 1rem auto;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .modal-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .features-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-modal-item {
        padding: 1.5rem;
    }
    
    .feature-modal-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-modal-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-modal-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .feature-benefits {
        font-size: 0.85rem;
    }
    
    /* Modal de planos mobile */
    .plans-comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header {
        min-width: 600px;
    }
    
    .comparison-section {
        min-width: 600px;
    }
    
    .comparison-row {
        padding: 12px 8px;
    }
    
    .feature-details h5 {
        font-size: 0.9rem;
    }
    
    .feature-details p {
        font-size: 0.8rem;
    }
    
    /* Seções gerais mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Grids mobile */
    .features-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards mobile */
    .feature-item,
    .service-card,
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Botões mobile */
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Melhorias para dispositivos móveis pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header extra pequeno */
    .logo {
        height: 35px;
    }
    
    /* Carrossel extra pequeno */
    .slide-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .circle-container {
        width: 150px;
        height: 150px;
    }
    
    .slide-number {
        font-size: 2rem;
    }
    
    .slide-total {
        font-size: 0.8rem;
    }
    
    /* Controles extra pequenos */
    .controls-container {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .play-pause-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Modais extra pequenos */
    .modal-container {
        width: 98%;
        margin: 0.5rem auto;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .feature-modal-item {
        padding: 1rem;
    }
    
    .feature-modal-icon {
        font-size: 1.5rem;
    }
    
    .feature-modal-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-modal-content p {
        font-size: 0.85rem;
    }
    
    /* Seções extra pequenas */
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Botões extra pequenos */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Melhorias para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .carousel-container {
        height: 100vh;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .slide-content {
        order: 1;
        text-align: left;
    }
    
    .visual-element {
        order: 2;
        margin-top: 0;
    }
    
    .circle-container {
        width: 180px;
        height: 180px;
    }
    
    .navigation-controls {
        bottom: 1rem;
    }
}

/* Melhorias para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .carousel-container *,
    .modal-container *,
    .btn,
    .nav a {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhorias para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .feature-modal-icon,
    .btn-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Melhorias para modo escuro */
@media (prefers-color-scheme: dark) {
    .modal-container {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .modal-header {
        border-bottom-color: #333;
    }
    
    .tab-btn {
        background: #2a2a2a;
        color: #ffffff;
    }
    
    .tab-btn.active {
        background: var(--primary-color);
    }
    
    .feature-modal-item {
        background: #2a2a2a;
    }
}

/* Melhorias para hover em dispositivos que suportam */
@media (hover: hover) and (pointer: fine) {
    .nav a:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }
    
    .feature-modal-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    
    .indicator:hover {
        transform: scale(1.2);
    }
    
    .nav-btn:hover,
    .play-pause-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
}


/* iPhone 14 (390x844) e dispositivos similares */
@media (max-width: 414px) and (min-width: 375px) {
    /* Ajustes específicos para iPhone 14 */
    .container {
        padding: 0 16px;
        max-width: 0%;
    }
    
    /* Header fixo melhorado */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 8px 0;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }
    
    .logo-img {
        height: 35px;
        width: auto;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 3px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    /* Carrossel ajustado para iPhone 14 */
    .carousel-container {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding-top: 60px;
        position: relative;
    }
    
    .main-content {
        height: calc(100vh - 60px);
        height: calc(var(--vh, 1vh) * 100 - 60px);
        display: flex;
        align-items: center;
        padding: 1rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .slide-content {
        order: 1;
        padding: 0 16px;
    }
    
    .slide-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    
    .slide-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        opacity: 0.8;
    }
    
    /* Features grid no carrossel */
    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .feature-item {
        text-align: center;
        padding: 0.8rem 0.5rem;
    }
    
    .feature-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .feature-item p {
        font-size: 0.7rem;
        line-height: 1.3;
        opacity: 0.8;
    }
    
    /* Visual element (círculo) */
    .visual-element {
        order: 2;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .circle-container {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .slide-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .slide-total {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    /* Botões CTA */
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-top: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
        border-radius: 8px;
    }
    
    /* Controles de navegação */
    .navigation-controls {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }
    
    .controls-container {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 16px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .indicators {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .indicator.active {
        background: white;
        transform: scale(1.2);
    }
    
    .play-pause-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .play-pause-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    /* Progress bar */
    .progress-bar {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        z-index: 999;
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(to right, var(--primary-color), rgba(255, 102, 0, 0.8));
        width: 0%;
        transition: width 0.1s linear;
    }
    
    /* Seções após o carrossel */
    .section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Grids responsivos */
    .features-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 16px;
    }
    
    /* Cards */
    .feature-card,
    .service-card,
    .benefit-card {
        padding: 1.2rem;
        text-align: center;
        border-radius: 12px;
    }
    
    .feature-card h3,
    .service-card h3,
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p,
    .service-card p,
    .benefit-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Modais iPhone 14 */
    .modal-container {
        width: 95%;
        max-width: none;
        margin: 0.5rem auto;
        max-height: 95vh;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.5rem;
        border-bottom: 1px solid #eee;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .modal-content {
        padding: 1rem;
        max-height: 75vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-tabs {
        flex-direction: column;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .features-modal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-modal-item {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .feature-modal-icon {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-modal-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .feature-modal-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .feature-benefits {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .feature-benefits li {
        margin-bottom: 0.3rem;
    }
    
    /* Modal de planos iPhone 14 */
    .plans-comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .table-header,
    .comparison-section {
        min-width: 500px;
    }
    
    .comparison-row {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
    
    .feature-details h5 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-details p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    /* Footer iPhone 14 */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 1rem 16px 0;
        font-size: 0.75rem;
    }
}

/* Correções para orientação landscape em iPhone 14 */
@media (max-width: 844px) and (max-height: 414px) and (orientation: landscape) {
    .carousel-container {
        height: 100vh;
        padding-top: 50px;
    }
    
    .main-content {
        height: calc(100vh - 50px);
        padding: 0.5rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: center;
    }
    
    .slide-content {
        order: 1;
        text-align: left;
        padding: 0 1rem;
    }
    
    .visual-element {
        order: 2;
        margin-top: 0;
    }
    
    .circle-container {
        width: 120px;
        height: 120px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-subtitle {
        font-size: 0.8rem;
    }
    
    .slide-description {
        font-size: 0.75rem;
    }
    
    .navigation-controls {
        bottom: 10px;
    }
    
    .controls-container {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .nav-btn,
    .play-pause-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
    }
}

/* Correções para dispositivos com notch */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-top: max(8px, env(safe-area-inset-top));
    }
    
    .carousel-container {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navigation-controls {
        margin-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .modal-container {
        margin-left: max(0.5rem, env(safe-area-inset-left));
        margin-right: max(0.5rem, env(safe-area-inset-right));
    }
}

/* Melhorias para performance em dispositivos móveis */
@media (max-width: 414px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .carousel-container,
    .modal-container {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    .slide-content,
    .visual-element {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Otimizar animações para mobile */
    .btn,
    .nav-btn,
    .play-pause-btn,
    .indicator {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Melhorar legibilidade */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Otimizar scroll */
    .modal-content,
    .plans-comparison-table {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}


/* Estilos para a seção de funcionalidades extras no modal de planos */
.plans-modal .comparison-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.plans-modal .comparison-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.plans-modal .comparison-section .section-title h4 {
    font-size: 1.4rem;
    color: var(--black-soft);
    font-weight: 600;
}

.plans-modal .comparison-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

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

.plans-modal .feature-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.plans-modal .feature-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
}

.plans-modal .feature-details h5 {
    font-size: 1.1rem;
    color: var(--black-soft);
    font-weight: 600;
    margin-bottom: 3px;
}

.plans-modal .feature-details p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

.plans-modal .plan-status {
    width: 80px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.plans-modal .plan-status.yes {
    color: #28a745; /* Verde */
}

.plans-modal .plan-status.no {
    color: #dc3545; /* Vermelho */
}




/* Correções para o Modal de Funcionalidades */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Garante que o modal esteja acima de outros elementos */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* Fixa o cabeçalho ao rolar o conteúdo do modal */
    top: 0;
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-close span {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
}

.modal-close span::before, .modal-close span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--white);
    top: 50%;
    left: 0;
    transform-origin: center;
}

.modal-close span::before {
    transform: translateY(-50%) rotate(45deg);
}

.modal-close span::after {
    transform: translateY(-50%) rotate(-45deg);
}

.modal-content {
    padding: 30px;
}

.modal-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 8px;
    gap: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background-color: #e0e0e0;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.tab-btn .tab-icon {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.features-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-modal-item {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-modal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-modal-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 10px;
}

.feature-modal-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.feature-benefits li:last-child {
    margin-bottom: 0;
}

.feature-benefits li::before {
    content: '\2713'; /* Checkmark */
    color: #28a745; /* Green */
    font-weight: bold;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px auto;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-close {
        font-size: 2rem;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-tabs {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }

    .tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

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

    .feature-modal-item {
        padding: 20px;
    }

    .feature-modal-icon {
        font-size: 2.5rem;
    }

    .feature-modal-content h4 {
        font-size: 1.2rem;
    }

    .feature-modal-content p {
        font-size: 0.85rem;
    }

    .feature-benefits li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-close {
        font-size: 1.8rem;
    }

    .feature-modal-icon {
        font-size: 2rem;
    }

    .feature-modal-content h4 {
        font-size: 1rem;
    }

    .feature-modal-content p {
        font-size: 0.8rem;
    }

    .feature-benefits li {
        font-size: 0.75rem;
    }
}




/* Estilo para 'Maxx' dourado no carrossel */
#maxx-golden {
    color: var(--primary-dark); /* Ou uma cor dourada específica, se houver uma variável */
}

.deeliv-carousel .logo-text {
    color: var(--white); /* Garante que o texto 'Delivery' seja branco */
}

