/* Reset e Variáveis - Design Profissional */
:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #7b61ff;
    --accent-color: #ff3366;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-gray-light: #c0c0c0;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --border-color: #333333;
    --border-light: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevenir overflow horizontal em mobile */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container, .header .container, .hero__container {
    box-sizing: border-box;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Geometric Background */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    opacity: 0.05;
}

.geo-circle-1 {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    top: -300px;
    right: -300px;
}

.geo-circle-2 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    bottom: -200px;
    left: -200px;
}

.geo-line-1 {
    width: 2px;
    height: 500px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
}

.geo-line-2 {
    width: 2px;
    height: 400px;
    background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
    bottom: 30%;
    left: 30%;
    transform: rotate(-30deg);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
    padding: 0;
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .header .container {
        padding: 0 40px;
    }
    
    .hero__container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 30px;
    }
    
    .hero__container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 20px;
    }
    
    .hero__container {
        padding: 0 20px;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo__image {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo__image:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav__contact {
    display: flex;
    gap: 4rem;
}

.nav__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav__label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.nav__value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav__link:hover .nav__value {
    color: var(--primary-color);
}

/* Hero Section - Split Layout */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    margin-top: 0;
}

.hero__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 5rem;
    align-items: center;
}

.hero__badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
}

.badge__number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.badge__text {
    font-size: 0.875rem;
    color: var(--text-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.title__line {
    display: block;
}

.title__line--accent {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
    font-weight: 400;
}

.hero__subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    gap: 1.5rem;
}

.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: inherit;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--bg-black);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn--large {
    width: 100%;
    justify-content: center;
    padding: 1.5rem;
}

/* Section Header */
.section__header {
    margin-bottom: 6rem;
}

.section__number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
}

.section__title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Features Section - Alternating Layout */
.features {
    padding: 12rem 0;
    position: relative;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.feature__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature__item--reverse {
    direction: rtl;
}

.feature__item--reverse > * {
    direction: ltr;
}

.feature__item--highlight {
    background: rgba(0, 212, 255, 0.05);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature__number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
}

.feature__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.feature__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray-light);
    font-weight: 300;
}

.feature__list-items {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.feature__list-items li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray-light);
    font-size: 1.05rem;
}

.feature__list-items li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature__visual {
    position: relative;
    height: 400px;
}

.visual__box {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.visual__box--primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.visual__box--secondary {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.2) 0%, rgba(123, 97, 255, 0.05) 100%);
    border: 1px solid rgba(123, 97, 255, 0.3);
}

.visual__box--accent {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 51, 102, 0.05) 100%);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.visual__box--gradient {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(123, 97, 255, 0.3) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.feature__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    display: block;
}

/* Benefits Section */
.benefits {
    padding: 12rem 0;
    background: var(--bg-darker);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit__card {
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit__card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.benefit__icon {
    margin-bottom: 2rem;
}

.icon__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.icon__circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
}

.benefit__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit__description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    padding: 12rem 0;
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.testimonial__main {
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    position: relative;
}

.testimonial__quote-mark {
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 2rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.testimonial__text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-gray-light);
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.author__name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author__role {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.testimonial__secondary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial__card {
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
}

.testimonial__card .testimonial__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Companies Section */
.companies {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.companies__header {
    margin-bottom: 4rem;
}

.companies__label {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 1rem;
}

.companies__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.company__item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

/* Typebot Floating Button with CTA (oculto quando .typebot--hidden) */
.typebot--hidden {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.typebot__floating-wrapper {
    position: fixed;
    right: 30px;
    bottom: 120px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.typebot__notification {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
    display: none;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
    animation: slideInRight 0.5s ease, shake 2s ease-in-out infinite 1s;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.typebot__notification::after {
    content: '→';
    position: absolute;
    right: 1rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.typebot__notification:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.5);
}

.notification__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

.notification__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.typebot__floating-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    animation: floatBtn 3s ease-in-out infinite;
}

.typebot__floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.6;
    animation: pulseBtn 2s infinite;
}

.btn__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-black);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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

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

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Typebot Modal */
.typebot__modal {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    display: none;
    padding: 0;
    margin: 0;
}

.typebot__modal.active {
    display: block;
}

.typebot__modal-overlay {
    display: none; /* Removido overlay para estilo widget */
}

.typebot__modal-content {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 140px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.4);
    animation: widgetSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    transform-origin: bottom right;
}

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

.typebot__modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.typebot__modal-close:hover {
    background: var(--bg-black);
    border-color: var(--primary-color);
    transform: rotate(90deg);
    color: var(--primary-color);
}

.typebot__modal-header {
    padding: 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    display: none;
}

.typebot__modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Chat Style */
.chat__header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    flex-shrink: 0;
}

.chat__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.chat__info {
    flex: 1;
}

.chat__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.chat__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: blink 2s infinite;
}

.chat__messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
    max-height: 450px;
    background: var(--bg-darker);
}

.chat__messages::-webkit-scrollbar {
    width: 6px;
}

.chat__messages::-webkit-scrollbar-track {
    background: var(--bg-black);
}

.chat__messages::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.chat__messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.chat__message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: messageSlideIn 0.3s ease;
}

.chat__message--bot {
    align-self: flex-start;
}

.chat__message--user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.chat__message--user .message__avatar {
    background: var(--gradient-primary);
    color: white;
}

.message__content {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message__text {
    background: var(--bg-darker);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.875rem;
}

.chat__message--user .message__text {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

.message__time {
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0 0.5rem;
}

.chat__message--user .message__time {
    text-align: right;
}

.message__download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.message__download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: var(--primary-dark);
}

.message__download-btn:active {
    transform: translateY(0);
}

.message__download-btn svg {
    flex-shrink: 0;
}

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

/* Chat Input Area */
.chat__input-area {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-card);
    flex-shrink: 0;
}

.chat__quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.quick-reply__btn {
    padding: 0.625rem 1rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 18px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.quick-reply__btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.quick-reply__btn:active {
    transform: translateY(0);
}

.quick-reply__btn.selected {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

.quick-reply__btn--confirm {
    background: var(--gradient-primary) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 700;
    margin-top: 0.5rem;
    width: 100%;
}

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

.chat__input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.chat__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.chat__send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat__send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.chat__send-btn:active {
    transform: scale(0.95);
}

.typebot__container {
    min-height: 400px;
    position: relative;
    padding: 0;
    display: none;
}

.typebot__container.active {
    display: block;
    padding: 1rem 2rem 2rem;
}

#typebot-container {
    width: 100%;
    min-height: 600px;
    height: auto;
    border-radius: 24px;
    overflow: visible;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#typebot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darker);
    z-index: 0;
    border-radius: 24px;
}

#typebot-container iframe {
    width: 100% !important;
    height: 600px !important;
    min-height: 600px !important;
    border: none !important;
    border-radius: 24px;
    display: block !important;
    position: relative;
    z-index: 1;
    background: transparent;
}

.chat__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat__options--checkbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.chat__option-btn {
    padding: 1rem 1.5rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.chat__option-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-black);
    transform: translateX(5px);
}

.chat__option-btn.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.chat__option-btn--confirm {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--bg-black);
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

.chat__option-btn--confirm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.chat__select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.chat__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

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

.chat__input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.chat__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.chat__send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat__send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.question__group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.question__input,
.question__select {
    padding: 1rem 1.25rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 100%;
}

.question__input:focus,
.question__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: var(--bg-black);
}

.question__options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question__options--checkbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option__radio,
.option__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-gray-light);
}

.option__radio:hover,
.option__checkbox:hover {
    border-color: var(--primary-color);
    background: var(--bg-black);
}

.option__radio input[type="radio"],
.option__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.option__radio input[type="radio"]:checked + span,
.option__checkbox input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.option__radio:has(input[type="radio"]:checked),
.option__checkbox:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

/* Form Section */
.form-section {
    padding: 12rem 0;
}

.form__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
}

.form__info {
    position: sticky;
    top: 120px;
}

.form__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.form__subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.form__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray-light);
    font-size: 1.05rem;
}

.form__benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.form__wrapper {
    background: var(--bg-card);
    padding: 4rem;
}

.form__iframe {
    display: block;
    border: none;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 750px;
    min-height: 750px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.required {
    color: var(--accent-color);
}

.form__input,
.form__select,
.form__textarea {
    padding: 1.25rem 1.5rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-black);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha__container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha__display {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    min-width: 140px;
    text-align: center;
    user-select: none;
}

.captcha__refresh {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha__refresh:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

.form__footer {
    margin-top: 1rem;
}

.form__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
}

.footer__content {
    margin-bottom: 4rem;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
}

.footer__brand {
    max-width: 400px;
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer__description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer__subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
}

.footer__text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social__link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer__bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Floating Counter Widget */
.floating-counter {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 999;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(20px);
    animation: slideInLeft 0.5s ease;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.floating-counter:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.5);
    border-color: var(--primary-light);
}

.counter__pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: -1;
}

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

.counter__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
}

.counter__icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.counter__info {
    flex: 1;
}

.counter__number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.counter__label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Responsive Counter */
@media (max-width: 768px) {
    .floating-counter {
        left: 15px;
        bottom: 15px;
        padding: 0.75rem 1rem;
        min-width: 160px;
    }
    
    .counter__icon {
        width: 32px;
        height: 32px;
    }
    
    .counter__number {
        font-size: 1.25rem;
    }
    
    .counter__label {
        font-size: 0.7rem;
    }

    .typebot__floating-wrapper {
        right: 15px;
        bottom: 90px;
        gap: 0.75rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 998 !important;
    }
    
    .typebot__floating-btn {
        right: 0;
        bottom: 0;
        width: 60px;
        height: 60px;
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .typebot__notification {
        display: none !important; /* Esconder notificação no mobile */
    }

    .typebot__modal-content {
        width: 100vw;
        right: 0;
        bottom: 0;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    
    .typebot__modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .chat__header {
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .chat__avatar {
        width: 36px;
        height: 36px;
    }
    
    .chat__name {
        font-size: 1rem;
    }
    
    .chat__status {
        font-size: 0.8rem;
    }
    
    .chat__messages {
        padding: 1rem;
        max-height: calc(100vh - 200px);
        min-height: calc(100vh - 200px);
    }
    
    .message__content {
        max-width: 85%;
    }
    
    .message__text {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        line-height: 1.5;
    }
    
    .message__avatar {
        width: 32px;
        height: 32px;
    }
    
    .chat__input-area {
        padding: 0.875rem 1rem;
        border-top: 1px solid var(--border-light);
    }
    
    .chat__quick-replies {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .quick-reply__btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 16px;
    }
    
    .chat__input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 24px;
    }
    
    .chat__send-btn {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .message__download-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .chat__options {
        gap: 0.625rem;
    }
    
    .chat__option-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .chat__select {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Success/Error Messages */
.form__success,
.form__error {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 500;
}

.form__success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form__error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form__success.show,
.form__error.show {
    display: block;
}

/* Responsive */
@media (max-width: 1400px) {
    .container {
        padding: 0 60px;
    }
    
    .hero__content {
        gap: 6rem;
    }
    
    .hero__title {
        font-size: 4.5rem;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero__stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .feature__item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature__item--reverse {
        direction: ltr;
    }
    
    .testimonials__layout {
        grid-template-columns: 1fr;
    }
    
    .form__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .form__info {
        position: static;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero__container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav {
        padding: 1.5rem 0;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav__logo {
        height: 40px;
    }
    
    .nav__contact {
        gap: 2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero__content {
        gap: 3rem;
    }
    
    .hero__badge-top {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero__cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero__stats {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .stat__label {
        font-size: 0.75rem;
    }
    
    .section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
    
    .features,
    .benefits,
    .testimonials,
    .form-section {
        padding: 4rem 0;
    }
    
    .feature__item {
        gap: 2rem;
    }
    
    .feature__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .feature__description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature__visual {
        height: 300px;
    }
    
    .feature__image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit__card {
        padding: 2rem;
    }
    
    .testimonial__main {
        padding: 2.5rem;
    }
    
    .testimonial__quote-mark {
        font-size: 5rem;
        top: 1rem;
        left: 1rem;
    }
    
    .testimonial__text {
        font-size: 1.1rem;
    }
    
    .companies__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .typebot__notification {
        max-width: 250px;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .typebot__floating-wrapper {
        right: 15px;
        bottom: 100px;
    }
    
    .benefit__item {
        padding: 2rem;
    }
    
    .form__info {
        position: static;
        margin-bottom: 2rem;
    }
    
    .companies {
        padding: 5rem 0;
    }
    
    .companies__header {
        margin-bottom: 3rem;
    }
    
    .geo-circle-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -200px;
    }
    
    .geo-circle-2 {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -150px;
    }
    
    .benefit__title {
        font-size: 1.5rem;
    }
    
    .testimonials__layout {
        gap: 2rem;
    }
    
    .testimonial__card {
        padding: 2rem;
    }
    
    .form__layout {
        gap: 3rem;
    }
    
    .form__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .form__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .form-section {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    .form__layout {
        gap: 2.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form__wrapper {
        padding: 1.75rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .form {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .form__group {
        width: 100%;
        max-width: 100%;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .captcha__container {
        flex-wrap: wrap;
        gap: 0.875rem;
    }
    
    .captcha__display {
        min-width: 130px;
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 1.25rem;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero__container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav {
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav__logo {
        height: 35px;
        margin: 0 auto;
    }
    
    .nav__contact {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .nav__link {
        align-items: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero__content {
        gap: 2rem;
    }
    
    .hero__badge-top {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero__stats {
        flex-direction: row;
        gap: 1rem;
        padding: 1.25rem;
        flex-wrap: wrap;
    }
    
    .stat__item {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
    
    .stat__number {
        font-size: 1.75rem;
    }
    
    .stat__label {
        font-size: 0.7rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .section__subtitle {
        font-size: 0.9rem;
    }
    
    .features,
    .benefits,
    .testimonials,
    .form-section {
        padding: 3rem 0;
    }
    
    .feature__number {
        font-size: 1rem;
    }
    
    .feature__title {
        font-size: 1.5rem;
    }
    
    .feature__description {
        font-size: 0.9rem;
    }
    
    .feature__visual {
        height: 250px;
    }
    
    .feature__image {
        max-width: 100%;
        height: auto;
    }
    
    .benefit__card {
        padding: 1.5rem;
    }
    
    .benefit__icon {
        margin-bottom: 1rem;
    }
    
    .icon__circle {
        width: 50px;
        height: 50px;
    }
    
    .testimonial__main {
        padding: 2rem;
    }
    
    .testimonial__quote-mark {
        font-size: 4rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .testimonial__text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .companies__list {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .company__item {
        font-size: 1rem;
    }
    
    .typebot__notification {
        max-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        right: 0;
    }
    
    .notification__text {
        font-size: 0.8rem;
    }
    
    .form__title {
        font-size: 1.75rem;
    }
    
    .form__subtitle {
        font-size: 0.9rem;
    }
    
    .form-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .form__layout {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form__wrapper {
        padding: 1.25rem;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .form {
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form__group {
        width: 100%;
        max-width: 100%;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .captcha__container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .captcha__display {
        min-width: 120px;
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }
    
    .captcha__refresh {
        padding: 0.75rem;
    }
    
    .form__benefits {
        gap: 0.875rem;
    }
    
    .form__benefit-item {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .form__footer {
        width: 100%;
    }
    
    .btn--large {
        width: 100%;
        padding: 1rem;
    }
    
    .floating-counter {
        left: 10px;
        bottom: 10px;
        padding: 0.625rem 0.875rem;
        min-width: 140px;
    }
    
    .counter__number {
        font-size: 1.1rem;
    }
    
    .counter__label {
        font-size: 0.65rem;
    }
    
    .typebot__floating-wrapper {
        right: 10px;
        bottom: 70px;
        gap: 0.625rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 998 !important;
    }
    
    .typebot__floating-btn {
        right: 0;
        bottom: 0;
        width: 56px;
        height: 56px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .typebot__notification {
        display: none !important; /* Esconder notificação no mobile pequeno */
    }
    
    .typebot__modal-content {
        width: 100vw;
        right: 0;
        bottom: 0;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    
    .typebot__modal-close {
        top: 0.625rem;
        right: 0.625rem;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    
    .chat__header {
        padding: 0.875rem;
    }
    
    .chat__avatar {
        width: 32px;
        height: 32px;
    }
    
    .chat__name {
        font-size: 0.95rem;
    }
    
    .chat__status {
        font-size: 0.75rem;
    }
    
    .chat__messages {
        padding: 0.875rem;
        max-height: calc(100vh - 180px);
        min-height: calc(100vh - 180px);
    }
    
    .message__content {
        max-width: 90%;
    }
    
    .message__text {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
        line-height: 1.4;
    }
    
    .message__avatar {
        width: 28px;
        height: 28px;
    }
    
    .message__time {
        font-size: 0.7rem;
    }
    
    .chat__input-area {
        padding: 0.75rem;
    }
    
    .chat__quick-replies {
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }
    
    .quick-reply__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 14px;
    }
    
    .chat__input {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .chat__send-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .message__download-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .chat__options {
        gap: 0.5rem;
    }
    
    .chat__option-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .chat__select {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .form__info {
        position: static;
        margin-bottom: 2rem;
    }
    
    .form__benefits {
        gap: 0.875rem;
    }
    
    .form__benefit-item {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .companies {
        padding: 4rem 0;
    }
    
    .companies__header {
        margin-bottom: 2rem;
    }
    
    .companies__label {
        font-size: 1rem;
        margin-left: 0;
        text-align: center;
    }
    
    .footer__text {
        font-size: 0.9rem;
    }
    
    .footer__link {
        font-size: 0.9rem;
    }
    
    .geo-circle-1,
    .geo-circle-2 {
        display: none;
    }
    
    .geo-line-1,
    .geo-line-2 {
        display: none;
    }
}
