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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #646464;
    overflow-x: hidden;
    position: relative;
    word-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}


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

/* Navigation */
.navbar {
    width: 90%;
    height: 90px;
    border-radius: 200px;
    border: solid 1px #ffffff20;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999999999999 !important;
    background: rgba(38, 72, 132, 0.1);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.navbar.scrolled {
    background: rgba(38, 72, 132, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 2rem 1rem;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #F1592D;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F1592D;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #F1592D !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: white !important;
    color: #264884 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/banner-hero-linha-virtual.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 72, 132, 0.4);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.parallax-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(241, 89, 45, 0.2);
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: particles 15s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 3s; }
.particle:nth-child(3) { left: 60%; animation-delay: 6s; }
.particle:nth-child(4) { left: 80%; animation-delay: 9s; }
.particle:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes particles {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero-content {
    flex: 1;
    text-align: left;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-badge i {
    color: #F1592D;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #F1592D;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .single-button {
    margin: 0 auto;
}

.cta-button {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    border: none;
}

.cta-button.primary {
    background: #F1592D;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 89, 45, 0.3);
}

.cta-button.secondary:hover {
    background: white;
    color: #264884;
}



.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #264884;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

/* Buttons */
.cta-button {
    background: #F1592D;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
}

.cta-button:hover {
    background: #264884;
    transform: scale(1.05);
}

.cta-button.secondary {
    background: #264884;
}

.cta-button.secondary:hover {
    background: #F1592D;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-up {
    animation: fadeUp 1s ease-out;
}

.fade-in {
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/banner-hero-linha-virtual.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 72, 132, 0.4);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 30px 30px;
    animation: moveLines 20s linear infinite;
}

@keyframes moveLines {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 30px 30px, -30px 30px;
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.95;
}

/* Target Companies Section */
.target-companies {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #646464;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.company-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.company-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(241, 89, 45, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #F1592D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

.company-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #264884;
}

.company-card p {
    color: #646464;
    line-height: 1.6;
}

.companies-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Benefits Carousel */
.benefits-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.benefits-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    padding: 2rem 0;
    margin: 2rem 0;
}

.benefits-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    width: max-content;
}

.benefits-carousel-track .benefit-card {
    width: 300px !important;
    flex-shrink: 0 !important;
    background: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    padding: 2.5rem 2rem !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(38, 72, 132, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #F1592D;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(38, 72, 132, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #F1592D;
    transform: scale(1.2);
}

.indicator:hover {
    background: #264884;
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-carousel {
        padding: 0 50px;
    }
    
    .benefits-carousel-container {
        padding: 1.8rem 0;
        margin: 1.8rem 0;
    }
    
    .benefits-carousel-track .benefit-card {
        width: 280px !important;
    }
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(241, 89, 45, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #F1592D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #264884;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(241, 89, 45, 0.3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #264884;
}

.benefit-card p {
    color: #646464;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 4rem;
}

/* How It Works / Price Calculator Section */
.how-it-works {
    padding: 100px 0;
    background: #264884;
    color: white;
    position: relative;
    overflow: hidden;
}

.pabx-effect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.how-it-works .section-title {
    color: #FFFFFF;
    background: #F1592D;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.calculator-container {
    display: grid;
    grid-template-columns: minmax(250px, 300px) 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.calculator-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    min-width: 150px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.calculator-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.calculator-content {
    color: white;
}

.price-info {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.price-item i {
    color: #F1592D;
    font-size: 1.5rem;
}

.calculator-interactive {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.calculator-interactive h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.calc-input-group label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.calc-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.calc-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #F1592D;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-btn:hover {
    background: white;
    color: #264884;
    transform: scale(1.1);
}

.calc-control input {
    width: 100px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #F1592D;
    border-radius: 10px;
    background: white;
    color: #264884;
}

.calc-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.calc-breakdown {
    margin-bottom: 1.5rem;
}

.calc-breakdown p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.calc-total {
    background: #F1592D;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.calc-total h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.total-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    transition: transform 0.2s ease;
}

.steps-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
    min-height: 300px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.testimonial.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.testimonial.testimonial-exit {
    transform: translateX(-40px) scale(0.92);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial.testimonial-enter {
    transform: translateX(40px) scale(0.92);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth content animations */
.testimonial-content {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-content p,
.testimonial-author {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #646464;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: #264884;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #848587;
    font-size: 0.95rem;
}

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

.slider-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: #848587;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn.active,
.slider-btn:hover {
    background: #F1592D;
    transform: scale(1.2);
}

/* Testimonials Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F1592D;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(241, 89, 45, 0.3);
}

.slider-arrow:hover {
    background: #264884;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 72, 132, 0.4);
}

.slider-arrow-left {
    left: -25px;
}

.slider-arrow-right {
    right: -25px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow-left {
        left: -20px;
    }
    
    .slider-arrow-right {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-arrow-left {
        left: -15px;
    }
    
    .slider-arrow-right {
        right: -15px;
    }
}


/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

/* Footer */
.footer {
    background: #264884;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #F1592D;
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(241, 89, 45, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F1592D;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #F1592D;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(241, 89, 45, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    /* Calculator tablet */
    .calculator-container {
        grid-template-columns: minmax(180px, 200px) 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .calculator-image img {
        max-width: 180px;
        min-width: 160px;
    }
    
    /* Contact form tablet - manter coluna única */
    .contact-form-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .contact-form-info {
        text-align: center;
        order: 1;
    }
    
    .contact-form-container {
        order: 2;
        padding: 2.5rem;
    }
    
    .contact-form-info .section-title {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .contact-form-info .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile - Base optimization */
    .navbar {
        width: 95%;
        height: 70px;
        margin-top: 10px;
    }
    
    .nav-content {
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 1rem 1rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(38, 72, 132, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 90%;
        border-radius: 15px;
        padding: 2rem 1rem;
        margin-top: 15px;
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        text-align: center;
        padding: 0.8rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-menu a:hover {
        background: rgba(241, 89, 45, 0.2);
    }
    
    .nav-logo {
        white-space: nowrap;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        min-height: 90vh;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Generic Mobile Optimizations */
    .section-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .company-card {
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .company-card h3 {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .company-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .companies-cta {
        margin-top: 3rem;
    }
    
    .benefits-carousel {
        padding: 0 0.5rem;
        margin-top: 2.5rem;
    }
    
    .benefits-carousel-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .benefits-carousel-track .benefit-card {
        width: 250px !important;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .benefit-card {
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .benefits-cta {
        margin-top: 3rem;
    }
    
    /* Calculator mobile */
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .calculator-image {
        order: -1;
        text-align: center;
    }
    
    .calculator-image img {
        max-width: 160px;
        min-width: 140px;
    }
    
    .price-item {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .calculator-interactive h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }
    
    .calc-control input {
        width: 80px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .calc-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .total-price {
        font-size: 2rem;
    }
    
    .calc-breakdown p {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .steps-cta {
        margin-top: 3rem;
    }
    
    /* Testimonials mobile */
    .testimonials-slider {
        min-height: 350px;
        padding: 0 1rem;
    }
    
    .testimonial {
        padding: 2rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    
    /* FAQ mobile */
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Contact form mobile */
    .contact-form-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
        padding: 0;
    }
    
    /* Mostrar formulário mobile apenas em dispositivos móveis */
    .mobile-only {
        display: block !important;
    }
    
    /* Ocultar formulário desktop em mobile */
    .contact-form-container:not(.mobile-only) {
        display: none !important;
    }
    
    .contact-form-info {
        padding: 0 1rem;
        text-align: center;
        order: 1;
    }
    
    .contact-form-info .section-title {
        text-align: center;
        font-size: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .contact-form-info .section-subtitle {
        text-align: center;
        font-size: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        order: 2;
        border-top: 3px solid #F1592D;
    }
    
    .contact-form-integrated .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-integrated .form-row-full {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-integrated .form-group {
        margin-bottom: 0;
    }
    
    .contact-form-integrated .form-group input,
    .contact-form-integrated .form-group select,
    .contact-form-integrated .form-group textarea {
        font-size: 16px; /* Previne zoom no iOS */
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        border: 2px solid #e4e6ff;
        border-radius: 10px;
        font-family: 'Nunito', sans-serif;
        transition: all 0.3s ease;
    }
    
    .contact-form-integrated .form-group input:focus,
    .contact-form-integrated .form-group select:focus,
    .contact-form-integrated .form-group textarea:focus {
        outline: none;
        border-color: #F1592D;
        background: white;
        box-shadow: 0 0 0 3px rgba(241, 89, 45, 0.1);
    }
    
    .contact-benefits {
        margin-top: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        text-align: left;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .checkbox-group {
        margin-bottom: 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .checkbox-label span {
        word-wrap: break-word;
    }

    /* Support section mobile */
    .support-section {
        padding: 60px 0;
    }
    
    .support-benefits {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .support-benefit-item {
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .support-benefit-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .support-benefit-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .support-check-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .support-cta {
        margin-top: 3rem;
    }
    
    .support-cta-button {
        font-size: 1rem !important;
        padding: 15px 30px !important;
        width: 100%;
        max-width: 320px;
    }

    /* Sections padding */
    .target-companies,
    .benefits,
    .how-it-works,
    .testimonials,
    .support-section,
    .contact-form-section,
    .final-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    /* Mobile Small - Extra optimizations */
    .navbar {
        width: 98%;
        height: 60px;
        margin-top: 5px;
    }
    
    .nav-content {
        align-items: flex-start;
        padding: 15px 1rem 0.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        width: 95%;
        padding: 1.5rem 1rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
        white-space: nowrap;
    }
    
    .nav-logo {
        white-space: nowrap;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-toggle {
        display: flex;
        gap: 3px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Hero Small Mobile */
    .hero {
        padding-top: 80px;
        min-height: 85vh;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
    
    /* Container and Spacing */
    .container {
        padding: 0 15px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        word-wrap: break-word;
    }
    
    /* Cards and grids */
    .company-card,
    .benefit-card {
        padding: 1.5rem 1rem;
        text-align: center;
        margin: 0 0.5rem;
        word-wrap: break-word;
    }
    
    .company-card h3,
    .benefit-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .company-card p,
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .companies-cta {
        margin-top: 2.5rem;
    }
    
    .benefits-cta {
        margin-top: 2.5rem;
    }
    
    .card-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .card-icon i,
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    /* Calculator small mobile */
    .calculator-container {
        padding: 1.5rem 0.5rem;
        gap: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .calculator-image img {
        max-width: 140px;
        min-width: 120px;
    }
    
    .calculator-interactive {
        padding: 1.5rem 1rem;
    }
    
    .calculator-interactive h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .price-item {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .calc-control input {
        width: 70px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .calc-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .total-price {
        font-size: 1.8rem;
    }
    
    .calc-breakdown p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .steps-cta {
        margin-top: 2.5rem;
    }
    
    /* Testimonials small mobile */
    .testimonials-slider {
        min-height: 300px;
        padding: 0 0.5rem;
    }
    
    .testimonial {
        padding: 1.5rem 0.8rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        margin-top: 1rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    
    /* FAQ small mobile */
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Support features */
    .support-features {
        text-align: left;
        margin: 2rem 0;
    }
    
    .support-features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* CTA buttons */
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button.large {
        font-size: 1rem;
        padding: 15px 25px;
        width: 100%;
        max-width: 320px;
    }
    
    .cta-button.secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Footer small */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Float buttons */
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 1.1rem;
    }
    
    /* Contact form small mobile */
    .contact-form-content {
        gap: 2rem;
    }
    
    .contact-form-info {
        padding: 0 0.5rem;
        order: 1;
    }
    
    .contact-form-container {
        order: 2;
    }
    
    .contact-form-info .section-title {
        font-size: 1.6rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .contact-form-info .section-subtitle {
        font-size: 0.95rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1rem 0.8rem;
        margin: 0;
        border-radius: 10px;
    }
    
    .contact-form-integrated .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-form-integrated .form-row-full {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-form-integrated .form-group {
        margin-bottom: 0;
    }
    
    .contact-form-integrated .form-group input,
    .contact-form-integrated .form-group select,
    .contact-form-integrated .form-group textarea {
        font-size: 16px; /* Previne zoom no iOS */
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-benefits {
        margin-top: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        word-wrap: break-word;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .checkbox-group {
        margin-bottom: 0.4rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .checkbox-label span {
        word-wrap: break-word;
    }

    /* Support section small mobile */
    .support-section {
        padding: 50px 0;
    }
    
    .support-benefits {
        margin: 2.5rem auto;
        padding: 0 0.5rem;
    }
    
    .support-benefit-item {
        padding: 1.2rem;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }
    
    .support-benefit-content h3 {
        font-size: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .support-benefit-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .support-check-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .support-cta {
        margin-top: 2.5rem;
    }
    
    .support-cta-button {
        font-size: 0.95rem !important;
        padding: 12px 25px !important;
        width: 100%;
        max-width: 300px;
    }

    /* Section padding for small mobile */
    .target-companies,
    .benefits,
    .how-it-works,
    .testimonials,
    .support-section,
    .contact-form-section,
    .final-cta {
        padding: 50px 0;
    }
    
    /* Arrow navigation optimization */
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
}

/* Extra small screens (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .company-card,
    .benefit-card {
        padding: 1rem 0.8rem;
        margin: 0 0.2rem;
    }
    
    .calculator-container {
        padding: 1rem 0.3rem;
        margin: 0 0.3rem;
    }
    
    .contact-form-container {
        padding: 0.8rem 0.5rem;
        margin: 0 0.2rem;
    }
    
    .contact-form-info {
        padding: 0 0.3rem;
    }
    
    .contact-form-info .section-title {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .contact-form-info .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .contact-form-integrated .form-group input,
    .contact-form-integrated .form-group select,
    .contact-form-integrated .form-group textarea {
        padding: 8px;
        font-size: 14px;
    }
    
    .contact-benefits {
        padding: 0 0.3rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .nav-logo {
        white-space: nowrap;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.6rem 0.7rem;
    }
    
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation for Icons */
.benefit-icon,
.card-icon,
.step-icon {
    animation: bounceIn 0.6s ease-out;
}

/* Hover Effects for Cards */
.company-card,
.benefit-card {
    position: relative;
    overflow: hidden;
}

.company-card::before,
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 89, 45, 0.1), transparent);
    transition: left 0.5s ease;
}

.company-card:hover::before,
.benefit-card:hover::before {
    left: 100%;
}


/* Enhanced FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #646464;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(241, 89, 45, 0.15);
    transform: translateY(-3px);
}

.faq-question {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F1592D;
    color: white;
}

.faq-question:hover {
    background: #264884;
    color: white;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #646464;
    line-height: 1.7;
    margin: 0;
}


/* Support Section */
.support-section {
    padding: 100px 0;
    background: url('assets/banner-suporte-linha-virtual.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}


.support-section .container {
    position: relative;
    z-index: 2;
}

.support-benefits {
    max-width: 800px;
    margin: 4rem auto;
}

.support-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(241, 89, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.support-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 89, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.support-benefit-item:hover::before {
    left: 100%;
}

.support-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(241, 89, 45, 0.15);
    border-color: rgba(241, 89, 45, 0.2);
}

.support-check-icon {
    width: 50px;
    height: 50px;
    background: #064785;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 71, 133, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(6, 71, 133, 0);
    }
}

.support-benefit-item:hover .support-check-icon {
    transform: scale(1.1);
    background: #064785;
}

.support-benefit-content {
    flex: 1;
}

.support-benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #264884;
    font-weight: 700;
}

.support-benefit-content p {
    color: #646464;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.support-cta {
    text-align: center;
    margin-top: 4rem;
}

.support-cta-button {
    background: #F1592D !important;
    color: white !important;
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(241, 89, 45, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.support-cta-button::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.6s ease;
}

.support-cta-button:hover::before {
    left: 100%;
}

.support-cta-button:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(241, 89, 45, 0.4) !important;
    background: #F1592D !important;
}

.support-cta-button i {
    font-size: 1.3rem;
    animation: headsetBounce 2s ease-in-out infinite;
}

@keyframes headsetBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Enhanced Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.contact-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.8) rotateX(-10deg);
    transition: all 0.3s ease;
}

.contact-modal-overlay.show .contact-modal {
    transform: scale(1) rotateX(0deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    color: #264884;
    font-size: 1.8rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #646464;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f8f9ff;
    color: #264884;
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #264884;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e4e6ff;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F1592D;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 89, 45, 0.1);
}

.form-group .error-message {
    color: #F1592D;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.form-group.error input {
    border-color: #F1592D;
    background: #fdfcfc;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.success-modal {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.success-modal-overlay.show .success-modal {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: checkPop 0.6s ease-out;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-modal h3 {
    color: #264884;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-modal p {
    color: #646464;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatWhatsApp 3s ease-in-out infinite;
}


@keyframes floatWhatsApp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    100% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Formulário Mobile - Oculto por padrão */
.mobile-only {
    display: none;
}

/* Garantir que o formulário desktop seja exibido em telas maiores */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .contact-form-container:not(.mobile-only) {
        display: block !important;
    }
}

/* Layout em duas colunas apenas para desktop muito grande */
@media (min-width: 1200px) {
    .contact-form-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.contact-form-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-form-info .section-subtitle {
    text-align: left;
    font-size: 1.2rem;
    color: #646464;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(241, 89, 45, 0.15);
}

.benefit-item i {
    color: #F1592D;
    font-size: 1.5rem;
    min-width: 24px;
}

.benefit-item span {
    color: #264884;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}

.contact-form-integrated .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-integrated .form-row-full {
    grid-template-columns: 1fr;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact-form-integrated .form-group {
    margin-bottom: 0;
}

.contact-form-integrated .form-group label {
    display: block;
    color: #264884;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form-integrated .form-group input,
.contact-form-integrated .form-group select,
.contact-form-integrated .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e4e6ff;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-form-integrated .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-integrated .form-group input::placeholder,
.contact-form-integrated .form-group select::placeholder,
.contact-form-integrated .form-group textarea::placeholder {
    color: #999;
}

.contact-form-integrated .form-group input:focus,
.contact-form-integrated .form-group select:focus,
.contact-form-integrated .form-group textarea:focus {
    outline: none;
    border-color: #F1592D;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 89, 45, 0.1);
}

.contact-form-integrated .form-group .error-message {
    color: #F1592D;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.contact-form-integrated .form-group.error input,
.contact-form-integrated .form-group.error select {
    border-color: #F1592D;
    background: #fdfcfc;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #646464;
    font-size: 1rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #F1592D;
}

.checkbox-label span {
    user-select: none;
}

.contact-form-integrated .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #F1592D;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #264884;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(241, 89, 45, 0.3);
}

/* City Search Section */
.city-search-section {
    margin: 60px 0;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(38, 72, 132, 0.1);
}

.city-search-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #264884;
    margin-bottom: 15px;
}

.city-search-section p {
    font-size: 1.1rem;
    color: #646464;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.city-search-container {
    max-width: 500px;
    margin: 0 auto 20px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

#citySearch {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 72, 132, 0.1);
}

#citySearch:focus {
    outline: none;
    border-color: #264884;
    box-shadow: 0 4px 20px rgba(38, 72, 132, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #264884;
    font-size: 1.2rem;
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e7ff;
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(38, 72, 132, 0.15);
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f4ff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.city-note {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
}

.search-result-item:hover,
.search-result-item.active {
    background: #f8f9ff;
    transform: translateX(5px);
}

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

.search-result-item .city-name {
    font-weight: 600;
    color: #264884;
    font-size: 1rem;
}

.search-result-item .city-ddd {
    background: #264884;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.search-info {
    margin-top: 20px;
}

.search-info p {
    color: #646464;
    font-size: 1rem;
    margin: 0;
}

.search-info i {
    color: #264884;
    margin-right: 8px;
}

/* City Confirmation Message */
.city-confirmation {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    animation: slideInUp 0.5s ease-out;
}

.confirmation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.confirmation-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.confirmation-text {
    text-align: center;
}

.confirmation-text h4 {
    color: #2e7d32;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.confirmation-text p {
    color: #4a4a4a;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.confirmation-actions {
    text-align: center;
}

.confirmation-actions .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 72, 132, 0.2);
}

.confirmation-actions .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 72, 132, 0.3);
}

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

/* Mobile Responsive for City Search */
@media (max-width: 768px) {
    .city-search-section {
        margin: 40px 0;
        padding: 30px 15px;
    }
    
    .city-search-section h3 {
        font-size: 1.5rem;
    }
    
    .city-search-section p {
        font-size: 1rem;
    }
    
    #citySearch {
        padding: 15px 45px 15px 15px;
        font-size: 1rem;
    }
    
    .search-icon {
        right: 15px;
        font-size: 1rem;
    }
    
    .search-results {
        max-height: 250px;
    }
    
    .search-result-item {
        padding: 12px 15px;
    }
    
    .search-result-item .city-name {
        font-size: 0.9rem;
    }
    
    .search-result-item .city-ddd {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    .city-confirmation {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .confirmation-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .confirmation-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .confirmation-text h4 {
        font-size: 1.1rem;
    }
    
    .confirmation-text p {
        font-size: 0.9rem;
    }
    
    .confirmation-actions .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

