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

/* Cor de seleção personalizada */
::selection {
    background-color: #0020ff;
    color: white;
}

::-moz-selection {
    background-color: #0020ff;
    color: white;
}
:root {
    --font-size-4xl: max(2.25rem, min(calc(0.59694rem + 4.59184vw), 4.5rem));
    --font-size-lg: max(1.25rem, min(calc(1.06633rem + 0.5102vw), 1.5rem));
    --font-size-sm: 0.9rem;
    --main-blue: #0020ff;
    --main-blue-light: #0050ff;
    --main-blue-dark: #0018cc;
    --main-blue-mid: #0030aa;
}

/* Ajuste de scroll para links âncora */
[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Colfax', 'SF Pro', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.funcionalidadesSub {
    font-size: 0.81rem;
    font-weight: 200;
    color: #666;
    margin-top: 10px;
    border: 1px solid #666;
    padding: 7px 25px;
    border-radius: 25px;
    text-transform: uppercase;
}

.funcionalidades-title {
    line-height: 3.6vw;
    margin-top: 1.0vw;
    margin-bottom: 0px !important;
    color: #000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.automate-gradient {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 25%, #1a75ff 50%, #4d94ff 75%, #0020ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 700;
    position: relative;
}

.automate-gradient::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 25%, #1a75ff 50%, #4d94ff 75%, #0020ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.featAtevus {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 50%, #0018cc 100%);
    color: #fff;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 10vh;
    position: relative;
    overflow: hidden;
}

.featAtevus::before,
.featAtevus::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
    z-index: 2;
    pointer-events: none;
}

.featAtevus::before {
    left: 0;
    background: linear-gradient(to right, #0020ff 30%, transparent 100%);
}

.featAtevus::after {
    right: 0;
    background: linear-gradient(to left, #0018cc 30%, transparent 100%);
}

.featAtevus-content {
    display: flex;
    gap: 30px;
    align-items: center;
    animation: scrollLeft 40s linear infinite;
    white-space: nowrap;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.iconAtevus {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.iconAtevus svg {
    width: 1.85rem;
    fill: #fff;
}

/* Navigation */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo img:first-child {
    height: 45px;
    z-index: 2;
}
.nav-logo img:last-child {
    height: 30px;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-btn {
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn--secondary {
    color: #0020FF;
    background: transparent;
    border: 1px solid #0020FF;
}

.nav-btn--secondary:hover {
    background: #0020FF;
    color: white;
}

.nav-btn--primary {
    color: white;
    background: #0020FF;
    border: 1px solid #0020FF;
    position: relative;
    overflow: hidden;
}

.nav-btn--primary::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.2s;
    animation: glassReflection 4s infinite;
    transform: skewX(-15deg);
}

@keyframes glassReflection {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.nav-btn--primary:hover {
    background: #0018cc;
    border-color: #0018cc;
    transform: translateY(-1px);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO SECTION CORRIGIDO: layout em coluna */
.heroH1 {
    font-size: var(--font-size-4xl);
    line-height: 1.02777778;
    letter-spacing: -2px;
    color: #1b1b20;
    font-weight: 500;
}

/* Animação do foguete */
.heroH1 .rocket-emoji {
    display: inline-block;
    animation: rocketShake 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes rocketShake {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
    }
    10% {
        transform: rotate(-2deg) translateY(-2px);
    }
    20% {
        transform: rotate(2deg) translateY(-1px);
    }
    30% {
        transform: rotate(-1deg) translateY(-3px);
    }
    40% {
        transform: rotate(1deg) translateY(-2px);
    }
    50% {
        transform: rotate(-1deg) translateY(-4px);
    }
    60% {
        transform: rotate(1deg) translateY(-3px);
    }
    70% {
        transform: rotate(-1deg) translateY(-2px);
    }
    80% {
        transform: rotate(1deg) translateY(-1px);
    }
    90% {
        transform: rotate(-1deg) translateY(-2px);
    }
}
.heroText {
    font-size: var(--font-size-lg);
    font-weight: 400;
    letter-spacing: -.1px;
    line-height: 1.333;
    margin-top: 20px;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding-top: 40px;
    position: relative;
    min-height: 0;
    gap: 0;
}
.hero__text--center {
    width: 100%;
    margin: 90px auto 32px auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.cidadeNotes {
    font-size: 1rem;
    color:#000;
    font-weight: 500;
}
.linkNotes {
    text-decoration: none;
    color: #0020FF;
    font-weight: 500;
    font-size: 0.9rem;
}
.linkNotes:hover {
    text-decoration: underline;
}
.hero__notes {
    font-size: var(--font-size-sm);
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3vh;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease-in-out;
}

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

.avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -8px;
    transition: transform 0.2s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.1);
    z-index: 10;
}

.avatar-count {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 100;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 32, 255, 0.2);
    padding-top: 2px;
    letter-spacing: -0.5px;
}
.hero__notes__span {
    display: flex;
    gap: 5px;
    align-items: center;
}
.hero__visual--centered {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 480px;
    position: relative;
    margin-top: 0;
}
.hero__img-bg {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    width: 420px;
    height: 480px;
    object-fit: cover;
    z-index: 1;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.07);
    margin: 0 auto;
    display: block;
}
/* HERO VISUAL COM BACKGROUND */
.hero__visual-bg {
    width: 420px;
    height: 480px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imagemFundo {
    background: url('assets/home__hero.webp') center bottom no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Imagem LCP para otimização de performance */
.lcp-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

/* Mobile: usar imagem estática */
@media (max-width: 768px) {
    /* Esconder background desktop no mobile */
    .imagemFundo {
        background: none;
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    /* Ocultar imagem LCP no mobile */
    .lcp-image {
        display: none;
    }
    
    .hero {
        padding-bottom: 0 !important;
        min-height: 0vh !important;
    }
    /* Container da imagem mobile */
    .mobile-hero-image {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    /* Imagem mobile */
    .mobile-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    /* Ajustar seção hero no mobile */
    .hero {
        padding-bottom: 0;
        margin-bottom: 0;
        min-height: 100vh;
    }
    
    .hero__text--center {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    /* Esconder animações no mobile */
    .chat-bubble-group {
        display: none !important;
    }
    
    .hero__visual-bg {
        display: none !important;
    }
    
    /* Esconder botão "Veja como funciona" no mobile */
    .linkNotes {
        display: none !important;
    }
    
    /* Ajustar layout dos avatares e texto no mobile */
    .hero__notes {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    .avatar-group {
        margin-bottom: 0 !important;
    }
}

/* Desktop: esconder imagem mobile */
@media (min-width: 769px) {
    .mobile-hero-image {
        display: none !important;
    }
}
/* Balões de conversa - estrutura fiel ao print */
.chat-bubble-group {
    position: absolute;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}
.chat-bubble-group--left {
    left: -265px;
    top: 40%;
    flex-direction: row;
    transform: translateY(-50%);
}
.chat-bubble-group--right {
    flex-direction: row-reverse;
}
.chat-bubble-group--right.chat-bubble-group--top {
    right: -220px;
    top: 18%;
}
body > section.hero > section > div > div.chat-bubble-group.chat-bubble-group--right.chat-bubble-group--bottom > img {
    margin-bottom: 15px;
}
.chat-bubble-group--right.chat-bubble-group--bottom {
    right: -230px;
    top: 58%;
}
.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 0 0 10px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
    background: #fff;
    object-fit: cover;
}
.chat-avatar--bot  {
    margin: 0 10px 20px 0;
}

.chat-bubble-group.chat-bubble-group--right .chat-bubble-meta {
    align-items: flex-end !important;
}
.chat-bubble-group--right .chat-name {
    margin-right: 5px;
}
.chat-bubble-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.chat-name {
    font-size: 0.85rem;
    font-weight: 200;
    margin-bottom: 2px;
    color: #222;
}
.chat-bubble-group--left .chat-bubble {
    border-radius: 1px 18px 18px 18px;
    max-width: 290px;
}
.chat-bubble-group--right .chat-bubble {
    border-radius: 18px 18px 1px 18px;
    max-width: 263px;
}
body > section.hero > section > div > div.chat-bubble-group.chat-bubble-group--right.chat-bubble-group--top > div > div {
    max-width: 290px;
}
.chat-bubble {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    padding: 12px 18px 12px 18px;
    min-width: 220px;
    font-size: 1.08rem;
    position: relative;
    margin-bottom: 0;
}
.chat-bubble--bot {
    background: #0020FF;
    color: #fff;
    box-shadow: 0 2px 16px 0 rgba(24,119,242,0.10);
}
.chat-bubble--bot .chat-name {
    color: #fff;
}
.chat-bubble--user {
    background: #fff;
    color: #222;
}


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

/* Estilos para página de Política de Privacidade */
.privacy-policy {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0020FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 32, 255, 0.08);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #0020FF 0%, #0066FF 100%);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::marker {
    color: #0020FF;
    font-weight: bold;
}

.contact-info {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #0020FF;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info a {
    color: #0020FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0066FF;
    text-decoration: underline;
}

/* Responsividade para Política de Privacidade */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

/* Skeleton Loading para geolocalização */
.skeleton-loading {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: baseline;
}

.skeleton-line {
    display: inline-block;
    height: 1em;
    width: 80px;
    background: linear-gradient(90deg, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s infinite;
    border-radius: 6px;
    vertical-align: text-bottom;
    line-height: 1;
    opacity: 0.7;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        background-position: 200% 0;
        opacity: 0.7;
    }
}

.cidade-text {
    transition: opacity 0.3s ease;
}

.cidade-text.show {
    display: inline !important;
    opacity: 1;
}

.skeleton-loading.hide {
    display: none;
}

/* Animação de sucesso do modal */
.success-animation {
    text-align: center;
    padding: 2rem 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
}

.success-animation.show {
    opacity: 1;
    transform: scale(1);
}

.success-content h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.success-content p {
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.success-icon {
    animation: successPulse 1s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-success-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.close-success-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: #e9ecef;
    color: #333;
}
@media (max-width: 1000px) {
    .hero__visual-bg {
        width: 320px;
        height: 320px;
    }
    .chat-bubble-group--left {
        left: -60px;
        top: 58%;
    }
    .chat-bubble-group--right.chat-bubble-group--top {
        right: -30px;
        top: 10%;
    }
    .chat-bubble-group--right.chat-bubble-group--bottom {
        right: -225px;
        top: 70%;
    }
    .chat-bubble {
        min-width: 120px;
        max-width: 90vw;
        font-size: 0.98rem;
        padding: 10px 12px 10px 12px;
    }
    .chat-avatar {
        width: 32px;
        height: 32px;
        margin-left: 6px;
        margin-right: 6px;
    }
}
@media (max-width: 600px) {
    .hero__text--center h1 {
        font-size: 2rem;
    }
    .hero__visual-bg {
        width: 98vw;
        height: 220px;
        min-width: 0;
        min-height: 0;
    }
    .chat-bubble-group--left {
        left: -10px;
        top: 60%;
    }
    .chat-bubble-group--right.chat-bubble-group--top {
        right: -10px;
        top: 0;
    }
    .chat-bubble-group--right.chat-bubble-group--bottom {
        right: -175px;
        top: 80%;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 75px 0 50px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Pattern de fundo com silhueta */
.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -32%;
    width: 80%;
    height: 200%;
    background: url('assets/atevus-silhueta.png') no-repeat;
    background-size: contain;
    background-position: left center;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    transform: rotate(5deg);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-text {
    max-width: 500px;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 50%, #0018cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.features-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-cta {
    display: inline-block;
    background: linear-gradient(90deg, #0020FF 60%, #0050ff 100%);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 32, 255, 0.2);
}

.features-text-message {
    color: #515151;
}

.features-cta::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.2s;
    animation: glassReflection 4s infinite;
    transform: skewX(-15deg);
}

.features-cta:hover {
    background: linear-gradient(90deg, #0018cc 60%, #0030aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 255, 0.3);
}

.features-cta:hover::before {
    animation: none;
    left: 100%;
}

.features-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    min-height: 500px;
    overflow: visible;
    position: relative;
}

.features-image img {
    max-width: 140%;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: bottom;
    margin-left: -20%;
    margin-bottom: -100px;
    transform: translateY(50px);
    position: absolute;
}

.features-image img:hover {
    transform: scale(1.02) translateY(50px);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 32, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 32, 255, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 32, 255, 0.15);
    border-color: rgba(0, 32, 255, 0.2);
}

.testimonial-card.featured-testimonial {
    background: linear-gradient(135deg, rgba(0, 32, 255, 0.05) 0%, rgba(0, 80, 255, 0.05) 100%);
    border: 2px solid rgba(0, 32, 255, 0.2);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 32, 255, 0.2);
}

.testimonial-card.featured-testimonial:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 32, 255, 0.25);
}

.testimonial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-quote-icon {
    margin-bottom: 1.5rem;
    color: #0020ff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background: rgba(0, 32, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 32, 255, 0.1);
    min-height: 60px;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0020ff;
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
    border: 3px solid #0020ff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0020ff, #0050ff, #1a75ff, #4d94ff, #0020ff);
    background-size: 300% 300%;
    animation: borderGlow 2s linear infinite;
    z-index: -1;
}

.author-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 32, 255, 0.4);
}

.testimonial-card:hover .author-avatar::before {
    animation-play-state: paused;
}

.testimonial-card:hover .author-avatar::after {
    animation-play-state: paused;
}

.author-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #0020ff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 32, 255, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6c757d;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0020ff;
    line-height: 1;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
}

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

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

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0020ff;
    min-width: 2rem;
    text-align: center;
}

.feature-number.unlimited {
    font-size: 1.8rem;
    color: #25D366;
}

.feature-label {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
}

.feature-extra {
    color: #bbc3c9;
    font-size: 0.85rem;
}

.pricing-includes {
    margin-bottom: 2rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-icon {
    flex-shrink: 0;
}

.cross-icon {
    flex-shrink: 0;
}

.include-item span {
    font-weight: 500;
    color: #495057;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #0018cc 0%, #003dcc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 255, 0.3);
}

.pricing-button.featured {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    box-shadow: 0 4px 15px rgba(0, 32, 255, 0.3);
}

.pricing-button.featured:hover {
    background: linear-gradient(135deg, #0018cc 0%, #003dcc 100%);
    box-shadow: 0 6px 25px rgba(0, 32, 255, 0.4);
}

.pricing-button.secondary {
    background: transparent;
    color: #0020ff;
    border: 2px solid #0020ff;
    margin-top: 0.5rem;
}

.pricing-button.secondary:hover {
    background: #0020ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 255, 0.3);
}

.pricing-link {
    text-align: center;
    margin-top: 1rem;
    color: #0020ff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-link:hover {
    color: #0018cc;
    text-decoration: none;
}

/* Novos estilos para descrição dos planos */
.pricing-description {
    margin-bottom: 2rem;
}

.plan-target {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-topic {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.feature-topic svg {
    color: #25D366;
    flex-shrink: 0;
}

.feature-topic span {
    line-height: 1.4;
}

/* Responsividade da seção de preços */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .plan-target {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-topic {
        font-size: 0.85rem;
        gap: 0.5rem;
        padding: 0.2rem 0;
    }
    
    .feature-topic svg {
        width: 14px;
        height: 14px;
    }
    
    .feature-number {
        font-size: 1.25rem;
        min-width: 1.5rem;
    }
    
    .feature-number.unlimited {
        font-size: 1.5rem;
    }
    
    .feature-label {
        font-size: 0.9rem;
    }
    
    .feature-extra {
        font-size: 0.8rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    opacity: 0.8;
}

/* Tools Section */
.tools {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.tool-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.tool-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 32, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 32, 255, 0.08);
    animation: cardFloat 3s ease-in-out infinite;
}

.stat-card-1 {
    animation-delay: 0s;
}

.stat-card-2 {
    animation-delay: 0.5s;
}

.stat-card-3 {
    animation-delay: 1s;
}

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

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 32, 255, 0.2);
    border-color: #0020ff;
}

.stat-card-1:hover {
    background: linear-gradient(135deg, rgba(0, 32, 255, 0.05) 0%, rgba(0, 80, 255, 0.1) 100%);
}

.stat-card-2:hover {
    background: linear-gradient(135deg, rgba(0, 32, 255, 0.05) 0%, rgba(0, 80, 255, 0.1) 100%);
}

.stat-card-3:hover {
    background: linear-gradient(135deg, rgba(0, 32, 255, 0.05) 0%, rgba(0, 80, 255, 0.1) 100%);
}


.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0020ff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    display: block;
    font-family: inherit;
    white-space: nowrap;
    content: "";
    unicode-bidi: normal;
}

.stat-card.featured-stat h3 {
    color: white;
    font-size: 3rem;
}

.stat-card p {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.stat-card.featured-stat p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0;
}


.stats-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 32, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

.stats-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;
}

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

.stats-cta-button:hover {
    background: linear-gradient(135deg, #0018cc 0%, #003dcc 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 32, 255, 0.4);
    color: white;
    text-decoration: none;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.stats-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* CTA Section */
.integrations {
    background: #0020ff;
    color: white;
    position: relative;
    overflow: visible;
}

.integrations-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.integrations-text {
    flex: 0 0 30%;
    text-align: left;
}

.integrations-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.integrations-text p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.integrations-button {
    background: white;
    color: #0020ff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.integrations-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.integrations-button svg {
    transition: transform 0.3s ease;
}

.integrations-button:hover svg {
    transform: translateX(4px);
}

.integrations-visual {
    flex: 0 0 70%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.integrations-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: logoFloat 3s ease-in-out infinite;
    z-index: 10;
    position: absolute;
    top: 40%;
    left: 75px;
    transform: translateY(-50%);
}

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

.integrations-line {
    position: absolute;
    left: 170px;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.6) 0px,
        rgba(255, 255, 255, 0.6) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 5;
}


.integrations-cards {
    position: absolute;
    left: 260px;
    top: 50%;
    transform: translateY(-53%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: calc(100% + 20%);
    overflow: hidden;
    z-index: 1;
    width: calc(100% - 280px);
    padding: 0;
    position: relative;
}

.integrations-cards::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(180deg, rgb(0 32 255) 0%, rgb(0 32 255) 5%, rgba(0, 32, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.integrations-cards::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(0deg, rgb(0 32 255) 0%, rgb(0 32 255) 15%, rgba(0, 32, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.integration-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateX(20px);
    flex-shrink: 0;
    min-height: 55px;
    width: 90%;
}

.integration-card.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    color: white;
    width: 38px;
    height: 38px;
}

.integration-card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    line-height: 1.3;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #0020ff;
    transition: transform 0.3s ease;
}

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

.faq-arrow {
    color: #0020ff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1937fd 0%, #0020ff 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    margin-bottom: 0.02rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.05rem;
    color: white;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

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

/* Modais das Funcionalidades */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 6%);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: color 0.3s ease;
}

.close:hover {
    color: #0020ff;
}

.modal-content h2 {
    color: #0020ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content ul li {
    color: #333;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.modal-content ul li::before {
    content: "✓";
    color: #0020ff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsividade dos modais */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
    }
    
    /* Modal Hero Mobile */
    #hero-modal .modal-content {
        max-width: 95%;
        padding: 1.2rem;
        margin: 0;
        max-height: 95vh;
        position: relative;
    }
    
    #hero-modal h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    #hero-modal p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .input-group {
        margin-bottom: 0.8rem;
    }
    
    .input-group textarea {
        min-height: 70px;
    }
    
    .input-row {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .input-row .input-group {
        margin-bottom: 0;
    }
    
    .input-icon {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .input-icon:first-child {
        flex: 0 0 40%;
    }
    
    .input-icon:last-child {
        flex: 0 0 60%;
    }
    
    #hero-modal h2 {
        font-size: 1.5rem;
    }
    
    .input-group input,
    .input-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .modal-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 71, 87, 0.3);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    max-width: 400px;
    animation: slideInUp 0.3s ease-out;
    border-left: 4px solid #ff3742;
}

.toast.show {
    display: flex;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

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

.toast.hide {
    animation: slideOutDown 0.3s ease-in forwards;
}

/* Toast Mobile */
@media (max-width: 768px) {
    .toast {
        bottom: 15px;
        left: 15px;
        right: 15px;
        transform: none;
        max-width: none;
        padding: 1rem;
    }
    
    .toast-message {
        font-size: 0.9rem;
    }
    
    @keyframes slideInUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOutDown {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }
}

/* Modal Hero Form */
#hero-modal .modal-content {
    max-width: 500px;
    width: 90%;
    padding: 1.5rem;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    position: relative;
}

#hero-modal h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

#hero-modal p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-row .input-group {
    flex: 1;
    margin-bottom: 0;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #0020ff;
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit-btn {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 255, 0.3);
}

/* Modal da Tabela Comparativa */
.pricing-modal {
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
}

/* Card informativo - escondido no desktop */
.mobile-scroll-hint {
    display: none;
}

/* Esconder elementos mobile no desktop */
.modal-actions-mobile {
    display: none;
}

.pricing-modal h2 {
    padding: 1.2rem;
    margin: 0;
    background: white;
}

.pricing-modal .comparison-table {
    margin-top: 0;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-modal .comparison-table {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.comparison-table::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table th:first-child {
    text-align: left;
    background: linear-gradient(135deg, #0018cc 0%, #0020ff 100%);
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check-icon {
    color: #25D366;
}

.comparison-table .cross-icon {
    color: #ff4444;
}

.comparison-table .category-header {
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.comparison-table .category-header td {
    font-weight: 700;
    font-size: 0.9rem;
    color: #495057;
    text-align: left;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-icon {
    color: #0020ff;
    flex-shrink: 0;
}

.comparison-table .category-header:first-child {
    border-top: none;
}

.connection-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    justify-content: center;
}

.connection-count {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6c757d;
    margin-left: 0.25rem;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.info-icon {
    color: #6c757d;
    transition: color 0.3s ease;
}

.tooltip:hover .info-icon {
    color: #0020ff;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.feature-with-tooltip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.feature-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.question-icon {
    color: #6c757d;
    transition: color 0.3s ease;
}

.feature-tooltip:hover .question-icon {
    color: #0020ff;
}

.feature-tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #2c3e50;
    color: white;
    text-align: left;
    border-radius: 6px;
    padding: 0.75rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}

.feature-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
}

.feature-tooltip:hover .feature-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.right-tooltip .feature-tooltip-text {
    left: 125%;
    right: auto;
    bottom: 50%;
    transform: translateY(50%);
    margin-left: 0;
    margin-right: 0;
}

.right-tooltip .feature-tooltip-text::after {
    left: -5px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 5px 5px 0;
    border-style: solid;
    border-color: transparent #2c3e50 transparent transparent;
}

.modal-actions {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.plan-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 100%;
    margin: 0;
    margin-left: 25%;
    padding: 0 1rem;
}

.plan-buttons .modal-choose-button {
    margin: 0 0.5rem;
    position: relative;
}

.modal-choose-button {
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 32, 255, 0.3);
    text-align: center;
}

.modal-choose-button.featured {
    background: linear-gradient(135deg, #0018cc 0%, #0020ff 100%);
    box-shadow: 0 4px 20px rgba(0, 32, 255, 0.4);
    transform: scale(1.05);
}

.modal-choose-button:hover {
    background: linear-gradient(135deg, #0018cc 0%, #003dcc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 255, 0.4);
}

.modal-choose-button.featured:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 32, 255, 0.5);
}

.button-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

/* Responsividade da tabela comparativa */
@media (max-width: 768px) {
    .pricing-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .comparison-table {
        max-height: 350px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .comparison-table th {
        font-size: 0.8rem;
    }
    
    .comparison-table::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    
    .connection-info {
        gap: 0.25rem;
    }
    
    .connection-count {
        font-size: 0.75rem;
    }
    
    .tooltip-text {
        width: 100px;
        margin-left: -50px;
        font-size: 0.7rem;
        padding: 0.4rem;
    }
    
    .category-title {
        gap: 0.25rem;
    }
    
    .category-icon {
        width: 16px;
        height: 16px;
    }
    
    .feature-with-tooltip {
        gap: 0.25rem;
    }
    
    .question-icon {
        width: 12px;
        height: 12px;
    }
    
    .feature-tooltip-text {
        width: 160px;
        margin-left: -80px;
        font-size: 0.75rem;
        padding: 0.6rem;
    }
    
    .modal-actions {
        padding: 1rem;
    }
    
    .plan-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
    }
    
    .plan-buttons .modal-choose-button {
        margin: 0;
    }
    
    .modal-choose-button {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
    
    .modal-choose-button.featured {
        transform: none;
    }
    
    .modal-choose-button.featured:hover {
        transform: translateY(-2px);
    }
    
    .button-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .right-tooltip .feature-tooltip-text {
        left: 50%;
        right: auto;
        bottom: 125%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
    }
    
    .right-tooltip .feature-tooltip-text::after {
        left: 50%;
        right: auto;
        top: 100%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #2c3e50 transparent transparent transparent;
    }
}

/* Footer responsivo com acordeão para mobile */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 0.5rem;
    }
    
    /* Primeira seção (logo) não tem acordeão */
    .footer-section:first-child h4 {
        display: none;
    }
    
    .footer-section:first-child ul {
        max-height: none;
        overflow: visible;
    }
    
    /* Outras seções têm acordeão */
    .footer-section:not(:first-child) h4 {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
        user-select: none;
    }
    
    .footer-section:not(:first-child) h4:hover {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section:not(:first-child) h4::after {
        content: "";
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z' fill='%23ffffff'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.3s ease;
    }
    
    .footer-section:not(:first-child).active h4::after {
        transform: rotate(180deg);
    }
    
    .footer-section:not(:first-child) ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0.5rem;
        opacity: 0;
    }
    
    .footer-section:not(:first-child).active ul {
        max-height: 200px;
        opacity: 1;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        margin: 0 auto;
        max-height: 60px;
    }
    
    .footer-section p {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 0.8rem;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.lottie-container {
    background: transparent;
    border-radius: 50%;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-container dotlottie-wc {
    display: block;
    width: 90px !important;
    height: 90px !important;
}

.lottie-container:hover {
    transform: scale(1.05);
}


/* Responsividade do botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .lottie-container {
        padding: 0;
    }
    
    .lottie-container dotlottie-wc {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Responsive Design */
/* Media queries para diferentes tamanhos de tela */
@media (min-width: 1200px) {
    .features-image img {
        max-width: 150%;
        margin-left: -25%;
        margin-bottom: -10px;
        transform: translateY(60px);
        position: absolute;
    }
    
    .features-image img:hover {
        transform: scale(1.02) translateY(60px);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .features-image img {
        max-width: 140%;
        margin-left: -20%;
        margin-bottom: -10px;
        transform: translateY(50px);
        position: absolute;
    }
    
    .features-image img:hover {
        transform: scale(1.02) translateY(50px);
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .features-image img {
        max-width: 130%;
        margin-left: -15%;
        margin-bottom: -10px;
        transform: translateY(40px);
        position: absolute;
    }
    
    .features-image img:hover {
        transform: scale(1.02) translateY(40px);
    }
}

@media (max-width: 768px) {
    /* Garantir que o container não ultrapasse a tela */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Menu mobile */
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    /* Header responsivo */
    .header {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Logo responsivo */
    .logo {
        max-width: 80px !important;
        height: 40px !important;
        width: auto !important;
    }
    
    /* Seções responsivas */
    section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Prevenir overflow horizontal */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Títulos responsivos */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Textos responsivos */
    p, span, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Imagens responsivas */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Botões responsivos */
    button, .btn {
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    /* Garantir que o body não tenha overflow */
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Garantir que o html não tenha overflow */
    html {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero__notes {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .avatar-group {
        margin-bottom: 4px;
    }
    
    .avatar {
        width: 28px;
        height: 28px;
    }
    
    .avatar-count {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* FeatAtevus mobile */
    .featAtevus {
        height: 8vh;
    }
    
    .iconAtevus {
        font-size: 0.9rem;
    }
    
    .featAtevus::before {
        background: linear-gradient(to right, #0020ff 20%, transparent 100%);
    }
    
    .featAtevus::after {
        background: linear-gradient(to left, #0018cc 20%, transparent 100%);
    }
    
    /* Navbar glass mobile */
    .navbar.glass {
        width: 90% !important;
    }
    
    /* Features mobile específico */
    .features {
        padding: 50px 0 0;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: -20px;
    }
    
    .features-text {
        max-width: 100%;
        justify-self: center;
        order: 1;
    }
    
    .features-text h2 {
        font-size: 2rem;
    }
    
    .features-image {
        justify-content: center;
        align-items: center;
        min-height: 300px;
        overflow: visible;
        order: 2;
        position: relative;
    }
    
    .features-image img {
        max-width: 135% !important;
        object-position: center;
        margin-left: 0;
        margin-bottom: 0;
        transform: none;
        position: absolute;
        top: -50px;
    }
    
    .features-image img:hover {
        transform: scale(1.02);
    }
    
    .features::before {
        opacity: 0.08;
        left: -1%;
        width: 125%;
        top: -15%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card.featured-testimonial {
        transform: none;
    }
    
    .testimonial-card.featured-testimonial:hover {
        transform: translateY(-8px);
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        min-height: auto;
    }
    
    .metric {
        gap: 0.2rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .testimonial-badge {
        position: static;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .benefits-grid,
    .tools-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card.featured-stat {
        transform: none;
    }
    
    .stat-card.featured-stat:hover {
        transform: translateY(-8px);
    }
    
    .stat-card h3 {
        font-size: 2.2rem;
    }
    
    .stat-card.featured-stat h3 {
        font-size: 2.5rem;
    }
    
    .stat-card p {
        font-size: 1rem;
    }
    
    .stats-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .stats-cta-text {
        font-size: 1.1rem;
    }
    
    .stats-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .chat-container {
        max-width: 100%;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-visual {
        flex: none;
        order: 1;
    }
    
    .cta-text {
        order: 2;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-text p {
        font-size: 1.4rem;
    }
    
    .cta-logo-visual img {
        height: 60px;
        animation-duration: 4s;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 2.4rem;
        margin-bottom: 0.8rem !important;
        margin-top: 1rem !important;
    }
    .section-header {
        margin-bottom: 0px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .testimonials,
    .benefits,
    .tools,
    .stats,
    .cta,
    .faq {
        padding: 60px 0;
    }
    .features {
        padding: 60px 0 0
    }
}

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

.feature-card,
.testimonial-card,
.benefit-card,
.tool-card,
.stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ChatBot.com Hero Section Ajustado - Fundo decorativo só embaixo */
.chatbot-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    padding-top: 120px;
    overflow: hidden;
}

/* Fundo decorativo amarelo só na base */
.chatbot-hero-bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 900px;
    height: 500px;
    background: url('https://www.chatbot.com/home__hero_hu874a44fa3b03d768a159e6fca5f89c2f_147706_2058x0_resize_q75_lanczos.jpg') center bottom/contain no-repeat;
    z-index: 1;
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

.chatbot-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    background: #fff;
}

/* Visual centralizado acima do fundo amarelo */
.chatbot-hero-visual {
    position: relative;
    z-index: 2;
    width: 420px;
    margin: 0 auto;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 10px;
    pointer-events: none;
}

.chatbot-hero-person {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    background: #fff;
    margin-bottom: 0;
}

/* Balões de conversa ajustados para as laterais */
.chatbot-balloon {
    position: absolute;
    max-width: 260px;
    min-width: 180px;
    padding: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 18px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
}

.balloon-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
}

.balloon-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.balloon-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.balloon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.balloon-avatar.chatbot {
    background: #2563eb;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.balloon-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.1rem;
}

.chatbot-balloon-left .balloon-name,
.chatbot-balloon-left .balloon-avatar {
    color: #fff;
    background: #2563eb;
}

.balloon-text {
    background: transparent;
    color: inherit;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 12px;
    padding: 0.2rem 0.1rem 0.2rem 0.5rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    line-height: 1.4;
}

/* Balões afastados do centro */
.chatbot-balloon-left {
    left: -120px;
    bottom: 60px;
    background: #2563eb;
    color: #fff;
}

.chatbot-balloon-right {
    right: -120px;
    top: 30px;
    background: #fff;
    color: #222;
}

.chatbot-balloon-bottom {
    right: -120px;
    bottom: 30px;
    background: #fff;
    color: #222;
}

/* Animação dos balões */
.chatbot-balloon.animated {
    animation: balloonIn 0.7s forwards;
}

#balloon-left.animated { animation-delay: 0.5s; }
#balloon-right.animated { animation-delay: 1.1s; }
#balloon-bottom.animated { animation-delay: 1.7s; }

@keyframes balloonIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .chatbot-hero-bg {
        width: 100vw;
        height: 250px;
    }
    .chatbot-hero-visual {
        width: 100vw;
        min-height: 220px;
    }
    .chatbot-hero-person {
        width: 160px;
        height: 160px;
    }
    .chatbot-balloon {
        min-width: 110px;
        max-width: 160px;
        font-size: 0.95rem;
    }
    .chatbot-balloon-right, .chatbot-balloon-bottom {
        right: -10px;
    }
    .chatbot-balloon-left {
        left: -10px;
        bottom: 30px;
    }
    .chatbot-balloon-bottom {
        bottom: 0;
    }
}

.balloon-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.balloon-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.balloon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.balloon-avatar.chatbot {
    background: #2563eb;
    color: #fff;
    font-size: 1.3rem;
    border: none;
    box-shadow: none;
}

.balloon-avatar.debra {
    background: #ffe27a;
    border: none;
    box-shadow: none;
}

.balloon-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}

.chatbot-balloon-left .balloon-name,
.chatbot-balloon-left .balloon-avatar {
    color: #fff;
    background: #2563eb;
}

.chatbot-balloon-left .balloon-header {
    justify-content: flex-start;
}

.chatbot-balloon-right .balloon-header {
    justify-content: flex-end;
    flex-direction: row;
    gap: 0.5rem;
}

.balloon-text {
    background: transparent;
    color: inherit;
    font-size: 1.08rem;
    font-weight: 400;
    border-radius: 12px;
    padding: 0.1rem 0.1rem 0.2rem 0.1rem;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.chatbot-balloon {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 0.7rem 1.1rem 0.7rem 1.1rem;
    min-width: 200px;
    max-width: 320px;
    background: #fff;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: absolute;
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chatbot-balloon-left {
    left: -120px;
    bottom: 60px;
    background: #2563eb;
    color: #fff;
    align-items: flex-start;
}

.chatbot-balloon-left .balloon-name {
    color: #fff;
}

.chatbot-balloon-left .balloon-avatar {
    background: #2563eb;
    color: #fff;
}

.chatbot-balloon-right {
    right: -120px;
    top: 30px;
    background: #fff;
    color: #222;
    align-items: flex-end;
}

.chatbot-balloon-bottom {
    right: -120px;
    bottom: 30px;
    background: #fff;
    color: #222;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .chatbot-hero-bg {
        width: 100vw;
        height: 250px;
    }
    .chatbot-hero-visual {
        width: 100vw;
        min-height: 220px;
    }
    .chatbot-hero-person {
        width: 160px;
        height: 160px;
    }
    .chatbot-balloon {
        min-width: 110px;
        max-width: 180px;
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem 0.5rem 0.7rem;
    }
    .chatbot-balloon-right, .chatbot-balloon-bottom {
        right: -10px;
    }
    .chatbot-balloon-left {
        left: -10px;
        bottom: 30px;
    }
    .chatbot-balloon-bottom {
        bottom: 0;
    }
}

/* HERO ChatBot.com - Estrutura fiel ao original */
.home__chat-bubble-group {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.home__chat-bubble-group.v--visible {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}
.home__chat-bubble-group-right {
  right: 0;
  top: 40px;
  align-items: flex-end;
}
.home__chat-bubble-group-left {
  left: 0;
  bottom: 80px;
  align-items: flex-start;
}
.home__chat-bubble-author {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: #222;
  background: #fff;
  padding: 0 0.3rem;
  border-radius: 8px;
  margin-bottom: 0.3rem;
  margin-left: 40px;
  margin-right: 40px;
}
.home__chat-bubble-row {
  display: flex;
  align-items: flex-end;
}
.home__chat-bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffe27a;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-right: 0.7rem;
}
.home__chat-bubble {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 1rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.5;
}
.home__chat-bubble-left {
  background: #2563eb;
  color: #fff;
  align-self: flex-start;
}
.home__chat-bubble-right {
  background: #fff;
  color: #222;
  align-self: flex-end;
}
@media (max-width: 900px) {
  .home__chat-bubble {
    min-width: 160px;
    max-width: 220px;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
  .home__chat-bubble-avatar {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }
  .home__chat-bubble-author {
    margin-left: 32px;
    margin-right: 32px;
  }
}

/* Fundo menor e balões alinhados igual ao print */
.home__hero {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 420px;
  margin: 0;
  z-index: 1;
  border-radius: 0;
  object-fit: cover;
}
.home__chat-bubble-group-left {
  left: 40px;
  top: 160px;
  align-items: flex-start;
}
.home__chat-bubble-group-right:first-of-type {
  right: 40px;
  top: 80px;
  align-items: flex-end;
}
.home__chat-bubble-group-right:last-of-type {
  right: 40px;
  top: 220px;
  align-items: flex-end;
}
@media (max-width: 900px) {
  .home__hero {
    max-width: 95vw;
    height: 220px;
  }
  .home__chat-bubble-group-left {
    left: 10px;
    top: 80px;
  }
  .home__chat-bubble-group-right:first-of-type {
    right: 10px;
    top: 30px;
  }
  .home__chat-bubble-group-right:last-of-type {
    right: 10px;
    top: 120px;
  }
}

/* Remover imagem antiga */
.hero__img-bg { display: none !important; }

/* Animação dos balões de conversa */
.chat-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.chat-anim.v--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 3;
}

/* Glassmorphism effect for navbar */
.navbar.glass {
  background: rgb(255 255 255 / 67%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s, width 0.3s, border-radius 0.3s;
  width: 75%;
  border-radius: 20px;
  margin-top: 10px;
}

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

.nav-logo img {
  height: 40px;
  margin-right: 8px;
}

.logo-escrita {
  height: 32px;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 1;
  transform: translateX(0);
}   

.navbar.glass .logo-escrita {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
}

.hide-escrita {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}

@font-face {
  font-family: 'Colfax';
  src: url('assets/font/ColfaxWebRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Colfax';
  src: url('assets/font/ColfaxWebMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Colfax';
  src: url('assets/font/ColfaxWebBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.hero__form {
    display: flex;
    gap: 12px;
    margin: 24px 0 0 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.hero__form input[type="text"],
.hero__form input[type="tel"] {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #e0e7ef;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #222;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,32,255,0.04);
    min-width: 180px;
}
.hero__form input[type="text"]:focus,
.hero__form input[type="tel"]:focus {
    border: 1.5px solid #0020FF;
    box-shadow: 0 2px 12px rgba(0,32,255,0.10);
}
.hero__form button {
    background: linear-gradient(90deg, #0020FF 60%, #0050ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,32,255,0.10);
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.hero__form 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.2s;
    animation: glassReflection 4s infinite;
    transform: skewX(-15deg);
}
.hero__form button:hover {
    background: linear-gradient(90deg, #0018cc 60%, #0030aa 100%);
    transform: translateY(-2px) scale(1.03);
}
.hero__form button:hover::before {
    animation: none;
    left: 100%;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}
.input-icon input {
    padding-left: 40px !important;
}

.input-icon:focus-within svg {
    opacity: 0;
    transform: translate(-20px, -50%);
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}

.input-icon:focus-within input {
    padding-left: 16px !important;
    transition: padding-left 0.35s cubic-bezier(.4,0,.2,1);
} 

/* Cards Grid Section */
.cards-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.cards-grid-parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 1.6vw;
    grid-row-gap: 4.5vh;
    height: 700px;
    margin-top: 40px;
}

.card-grid-item {
    background: #0034ff05;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0 69 255 / 20%);
}

.card-grid-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 32, 255, 0.15);
}

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

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0020ff 0%, #0050ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

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

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Novo layout para cards com imagem */
.card-content-wrapper {
    display: flex;
    height: 100%;
    align-items: stretch;
}

.card-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-right: 30px;
}

.card-text-content .card-icon {
    align-self: flex-start;
    margin-bottom: 20px;
}

.card-text-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: left;
}

.card-text-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.card-image-placeholder {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    margin-right: -30px;
    margin-top: -30px;
    margin-bottom: -30px;
    width: calc(50% + 30px);
    height: calc(100% + 60px);
}

.image-placeholder {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
}

.image-placeholder img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Layout vertical para card com imagem na parte de baixo */
.card-content-wrapper-vertical {
    display: flex;
    flex-direction: row;
    height: 100%;
    padding-bottom: 0;
    position: relative;
}

.card-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

/* CSS específico para o card "Acompanhe seus leads em tempo real!" (card-1) */
.card-1 .card-text-content h3,
.card-1 .card-text-content p {
    width: 100% !important;
    max-width: 100% !important;
}
.integration-card .card-icon {
    margin-bottom: 0px !important;
}

/* CSS específico para o card da IA (card-2) */
.card-2 .card-icon {
    margin-top: 20px;
    margin-bottom: 35px;
}

.card-2 .card-text-content h3 {
    width: 100% !important;
    max-width: 100% !important;
}

.card-2 .card-text-content p {
    width: 65% !important;
    max-width: 65% !important;
}

.card-text-content .card-icon {
    align-self: flex-start;
    margin-top: 10px;
    margin-bottom: 20px;
}

.card-text-content h3,
.card-text-content p {
    text-align: left;
}

.card-text-content h3 {
    max-width: 60%;
    margin-bottom: 10px;
}

.card-text-content p {
    max-width: 60%;
    line-height: 1.6;
}

.card-image-placeholder-bottom {
    position: absolute;
    top: 20px;
    right: -30px;
    bottom: -30px;
    width: calc(50% + 30px);
    height: calc(100% + 10px);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 1;
}

.image-placeholder-bottom {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
}

.image-placeholder-bottom img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin-left: 15%;
}

/* Grid Areas */
.card-1 { grid-area: 3 / 1 / 6 / 4; }
.card-2 { grid-area: 3 / 4 / 6 / 6; }
.card-3 { grid-area: 1 / 1 / 3 / 3; }
.card-4 { grid-area: 1 / 3 / 3 / 6; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cards-grid-parent {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        height: 580px;
    }
    .testimonials .section-header p {
        margin-bottom: 2rem !important;
    }

    .logo {
        max-width: 80px !important;
        height: 40px !important;
        width: auto !important;
    }
    .nav-logo img:first-child {
        max-height: 55px;
    }
    .nav-logo img:last-child {
        max-height: 30px;
    }
    
    .card-1 { grid-area: 3 / 1 / 5 / 3; }
    .card-2 { grid-area: 3 / 3 / 5 / 5; }
    .card-3 { grid-area: 1 / 1 / 3 / 3; }
    .card-4 { grid-area: 1 / 3 / 3 / 5; }
}

@media (max-width: 768px) {
    .funcionalidadesSub {
        margin-bottom: 1.5rem;
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 6px 20px;
    }
    .logo {
        max-width: 80px !important;
        height: 40px !important;
        width: auto !important;
    }
    .testimonial-metrics {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
    
    .testimonial-metrics .metric {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .testimonial-author {
        justify-content: center;
    }
    
    /* Esconder botões do footer do modal de comparação */
    .plan-buttons {
        display: none !important;
        font-size: 0.8rem;
    }
    
    /* Mostrar aviso mobile no modal */
    .modal-actions-mobile {
        display: block !important;
        background: linear-gradient(135deg, #0020ff 0%, #0066ff 100%);
        color: white;
        padding: 12px 16px;
        text-align: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 8px;
        margin-bottom: 16px;
        animation: pulseHint 2s ease-in-out infinite;
    }
    
    /* Card informativo para scroll horizontal - apenas mobile */
    .mobile-scroll-hint {
        display: block !important;
        background: linear-gradient(135deg, #0020ff 0%, #0066ff 100%);
        border-radius: 0;
        padding: 16px 20px;
        margin: 0;
        box-shadow: none;
        animation: pulseHint 2s ease-in-out infinite;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .scroll-hint-content {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    
    .scroll-icon {
        color: white;
        animation: bounceRight 1.5s ease-in-out infinite;
    }
    
    @keyframes pulseHint {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        50% {
            transform: scale(1.02);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
        }
    }
    
    @keyframes bounceRight {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(4px);
        }
    }
    
    /* Centralizar modal no mobile */
    .modal-content {
        margin: 5% auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: fixed !important;
        width: 90% !important;
        max-width: 90% !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
    
    .pricing-modal {
        margin: 2% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: fixed !important;
        width: 90% !important;
        max-width: 90% !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
    
    /* Scroll horizontal para tabela no mobile */
    .comparison-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
    }
    
    .comparison-table::-webkit-scrollbar {
        height: 6px !important;
    }
    
    .comparison-table::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
        border-radius: 3px !important;
    }
    
    .comparison-table::-webkit-scrollbar-thumb {
        background: #888 !important;
        border-radius: 3px !important;
    }
    
    .comparison-table::-webkit-scrollbar-thumb:hover {
        background: #555 !important;
    }
    
    .comparison-table table {
        min-width: 600px !important;
    }
    
    .funcionalidades-title {
        margin-top: 1.5rem !important;
    }
    
    .cards-grid-section {
        padding: 60px 0;
    }
    
    .cards-grid-parent {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 20px;
    }
    
    .card-1, .card-2, .card-3, .card-4 {
        grid-area: auto;
        min-height: 200px;
    }
    
    .card-1 {
        min-height: 350px;
    }
    
    /* Remover todas as imagens dos cards no mobile */
    .card-1 .image-placeholder,
    .card-1 .card-image-placeholder,
    .card-2 .image-placeholder-bottom,
    .card-2 .card-image-placeholder-bottom,
    .card-3 .image-placeholder,
    .card-3 .card-image-placeholder,
    .card-4 .image-placeholder-left,
    .card-4 .card-image-placeholder-left {
        display: none !important;
    }
    
    /* Centralizar textos com ícones no mobile */
    .card-1 .card-text-content,
    .card-2 .card-text-content,
    .card-3 .card-text-content,
    .card-4 .card-text-content-right {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .card-1 .card-icon,
    .card-2 .card-icon,
    .card-3 .card-icon,
    .card-4 .card-icon {
        margin: 0 auto 1rem auto;
    }
    
    /* Centralizar títulos e descrições de todos os cards no mobile */
    .card-1 h3,
    .card-2 h3,
    .card-3 h3,
    .card-4 h3 {
        text-align: center;
        margin: 0 auto 1rem auto;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .card-1 p,
    .card-2 p,
    .card-3 p,
    .card-4 p {
        text-align: center;
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Correção específica para o card-4 que usa estrutura diferente */
    .card-4 .card-text-content-right h3,
    .card-4 .card-text-content-right p {
        text-align: center !important;
        margin: 0 auto;
    }
    
    .card-4 .card-text-content-right h3 {
        margin-bottom: 1rem;
    }
    
    .card-4 .card-text-content-right p {
        max-width: 90%;
    }
    
    /* Garantir que todas as divs de imagem sejam removidas no mobile */
    .cards-grid-parent .card-image-placeholder,
    .cards-grid-parent .image-placeholder,
    .cards-grid-parent .image-placeholder-bottom,
    .cards-grid-parent .image-placeholder-left,
    .cards-grid-parent .card-image-placeholder-bottom,
    .cards-grid-parent .card-image-placeholder-left {
        display: none !important;
    }
}

/* Media query para telas de 384px (Galaxy S21 Plus, etc.) */
@media (max-width: 390px) {
    .features-cta {
        font-size: 1.1rem !important;
        padding: 16px 15px !important;
        white-space: nowrap !important;
        line-height: 1.0 !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        letter-spacing: -0.5px !important;
    }
    
    /* Modal para telas muito pequenas */
    .modal-content,
    .pricing-modal {
        width: 95% !important;
        max-width: 95% !important;
        max-height: 90vh !important;
    }
}

/* Media query para telas muito pequenas (iPhone SE, etc.) */
@media (max-width: 375px) {
    .funcionalidadesSub {
        font-size: 0.7rem;
        padding: 5px 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    /* Margin entre descrição e cards dos depoimentos no mobile */
    .testimonials .section-header p {
        margin-bottom: 2rem !important;
    }
    
    /* Métricas dos depoimentos na mesma linha no mobile */
    .testimonial-metrics {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
    
    .testimonial-metrics .metric {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .card-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .card-image-placeholder {
        margin-right: -30px;
        margin-top: -55px;
        margin-bottom: -60px;
        width: calc(100% + 60px);
        height: 200px;
    }
    
    .image-placeholder img {
        width: 100%;
        padding-left: 0;
        height: 100%;
    }
    
    .card-content-wrapper-vertical {
        flex-direction: column;
        gap: 0;
    }
    
    .card-text-content {
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    /* CSS específico para mobile - sobrescreve regras desktop */
    .card-1 .card-text-content h3,
    .card-1 .card-text-content p,
    .card-2 .card-text-content h3,
    .card-2 .card-text-content p {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    /* CSS específico para o card da IA (card-2) no mobile */
    .card-2 .card-icon {
        margin-top: 15px;
        margin-bottom: 25px;
    }
    
    .card-text-content .card-icon {
        margin-top: 5px;
        margin-bottom: 15px;
    }
    
    .card-text-content p {
        max-width: 100%;
    }
    
    .card-image-placeholder-bottom {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: calc(100% + 60px);
        height: 200px;
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: -30px;
        display: none;
    }
    
    /* REGRA FINAL MOBILE - Máxima prioridade para sobrescrever desktop */
    .card-1 .card-text-content h3,
    .card-1 .card-text-content p,
    .card-2 .card-text-content h3,
    .card-2 .card-text-content p {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .image-placeholder-bottom img {
        width: 105%;
        margin-left: 15%;
    }
}

/* Layout reverso para card-4: imagem à esquerda (30%) e texto à direita (70%) */
.card-content-wrapper-reverse {
    display: flex;
    height: 100%;
    align-items: stretch;
    flex-direction: row;
}

.card-image-placeholder-left {
    flex: 0 0 30%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    margin-left: -30px;
    margin-top: -30px;
    margin-bottom: -30px;
}

.image-placeholder-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

.image-placeholder-left img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.card-text-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-right: 0;
}

.card-text-content-right .card-icon {
    margin-bottom: 20px;
}

.card-text-content-right h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-text-content-right p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsividade para o layout reverso */
@media (max-width: 768px) {
    .card-content-wrapper-reverse {
        flex-direction: column;
        gap: 20px;
    }
    
    .card-image-placeholder-left {
        flex: none;
        margin-left: -30px;
        margin-right: -30px;
        margin-top: -30px;
        margin-bottom: 0;
        width: calc(100% + 60px);
        height: 200px;
        display: none;
    }
    
    .card-text-content-right {
        flex: none;
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }
    
    .card-text-content-right p {
        max-width: 100%;
    }
}

/* Estilos específicos para o card-2 (IA) */
.card-2 .card-image-placeholder-bottom {
    overflow: visible !important;
    margin-top: -40px;
}

.card-2 .image-placeholder-bottom {
    overflow: visible;
    margin-top: -40px;
}

.card-2 .image-placeholder-bottom img {
    width: 137%;
    height: 137%;
    object-fit: cover;
    object-position: center center;
    margin-left: -13%;
    margin-top: 0px;
}

/* Estilos específicos para o card-4 (Organização) */
.card-4 .image-placeholder-left img {
    width: 210%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    margin-top: 15px;
    margin-left: -87px;
    margin-bottom: 17px;
}

/* Integrations Container */
.integrations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

/* Remove padding da célula que contém as integrações */
.integrations-container {
    margin: -0.1rem;
}

.integration-badge {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.integration-badge:hover {
    transform: scale(1.1);
}

.integration-badge img {
    width: 63px;
    height: 63px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Tooltip para integrações */
.integration-badge::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    pointer-events: none;
}

.integration-badge::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    pointer-events: none;
}

.integration-badge:hover::before,
.integration-badge:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

.integration-badge:hover::after {
    transform: translateX(-50%) translateY(100%);
}

/* Badge "Em breve" */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    padding: 0.2rem 2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsividade para integrações */
@media (max-width: 768px) {
    .integrations-container {
        gap: 0.5rem;
        padding: 0.25rem;
    }
    
    .integration-badge img {
        width: 40px;
        height: 40px;
    }
    
    .integration-badge::before {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin: 0.4rem 0;
    }
}

/* Plano Personalizado - Texto */
.custom-plan-text {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
    grid-column: 1 / -1;
    width: 100%;
}

.custom-plan-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.custom-plan-link {
    color: #0020ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-plan-link:hover {
    color: #0018cc;
    text-decoration: underline;
}

.onboarding-note {
    text-align: center;
    margin-top: -1.5rem;
    padding: 0;
    grid-column: 1 / -1;
    width: 100%;
}

.onboarding-note p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.asterisk {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsividade para plano personalizado */
@media (max-width: 768px) {
    .custom-plan-text {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .custom-plan-text p {
        font-size: 0.9rem;
    }
    
    .onboarding-note {
        margin-top: -1.3rem;
    }
    
    .onboarding-note p {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .stat-card {
        padding: 2rem 1.5rem;
        animation: none;
        width: 100%;
    }

    .stat-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .stats-cta {
        margin-top: 3rem;
        padding: 0;
    }

    .stats-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        animation: none;
    }
    
    .integrations-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 15px;
        padding-bottom: 30px;
    }
    
    .integrations-text {
        order: 1;
        flex: none;
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
    
    .integrations-text h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .integrations-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .integrations-button {
        display: none !important;
    }
    
    .integrations-visual {
        order: 2;
        flex: none;
        height: 300px;
        width: 100%;
        justify-content: center;
        position: relative;
        margin-top: -30px
    }
    
    .integrations-logo {
        display: none !important;
    }
    
    .integrations-line {
        display: none !important;
    }
    
    .integrations-cards {
        left: 0;
        width: 100%;
        height: calc(100% + 10%);
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .integrations-cards::before,
    .integrations-cards::after {
        display: none;
    }
    
    .integration-card {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
        min-height: 45px;
        width: 90%;
    }
    
    .integration-card span {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .integration-card .card-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .integration-card .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Ajustes para telas muito pequenas */
    @media (max-width: 480px) {
        .integrations-text h2 {
            font-size: 1.4rem;
        }
        
        .integrations-text p {
            font-size: 0.8rem;
        }
        
        
        .integrations-visual {
            height: 280px;
        }
        
        .integrations-cards {
            left: 0;
            width: 100%;
            justify-content: center;
            align-items: center;
        }
        
        .integration-card {
            padding: 0.5rem 0.7rem;
            min-height: 40px;
        }
        
        .integration-card span {
            font-size: 0.7rem;
        }
        
        .integration-card .card-icon {
            width: 36px;
            height: 36px;
        }
        
        .integration-card .card-icon svg {
            width: 18px;
            height: 18px;
        }
    }
}

/* Animações para Stats Section */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 32, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 32, 255, 0.5);
    }
} 
@media (max-width: 768px) {
    .card-2 .card-text-content p {
        width: 100% !important;
        max-width: 100% !important;
    }
    .card-2 .card-text-content, .card-1 .card-text-content {
        padding-right: 0 !important;
    }
}