/* Google Fonts carregadas via HTML para melhor performance */

/* Breakpoints Globais */
:root {
    --primary: #0066ff;
    --secondary: #00c2ff;
    --dark: #001433;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --dark-blue: #001f3f;
    --mobile-s: 320px;
    --mobile-m: 375px;
    --mobile-l: 425px;
    --tablet: 768px;
    --laptop: 1024px;
    --laptop-l: 1440px;
    --4k: 2560px;
}

/* Ajustes Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte atualizada */
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden; /* Previne scroll horizontal */
}

/* Container universal para centralização */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
}

/* Centralização global para todas as seções principais */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1440px) {
    section {
        max-width: 1600px;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Previne scroll horizontal global */
}

/* Header */
.header {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo img {
    height: 95px;
    max-width: 220px;
    margin-top: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 194, 255, 0.5));
}

@media (max-width: 768px) {
    .logo img {
        height: 95px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 95px;
        max-width: 180px;
    }
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    background: rgba(0, 20, 51, 0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dark-blue);
    background: var(--white);
}

.nav-menu a.active {
    font-weight: 600;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
    padding: 0.5rem;
}

.hamburger-menu i {
    font-size: 1.5rem;
    color: var(--white);
}


/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    background: var(--dark-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 1rem;
    bottom: 100px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centralizado */
    max-width: 600px;  /* Largura máxima para controle do conteúdo */
    margin: 0 auto;
    text-align: center; /* Texto centralizado */
}

.logo {
    margin-bottom: 3rem;
}

.logo-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.3));
}

h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;  /* Alinhamento centralizado */
    letter-spacing: -0.02em;  /* Ajuste de espaçamento entre letras */
}

h1 span {
    display: block;  /* Cada linha em um bloco separado */
    margin-bottom: -1.9rem;
    position: relative;
    bottom: 0px;
}

h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3rem;  /* Destaque maior para a palavra principal */
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);

}

.hero-description span {
    color: var(--secondary);
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn.primary {
    background: var(--gradient);
    color: var(--white);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn.secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.secondary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn.secondary i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn.secondary:hover i {
    transform: rotate(360deg);
}


/* Right Side Content */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bot-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatAnimation 4s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}
/* Animations */
@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

/* Media Queries para responsividade */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 0rem 1rem 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        bottom: 0;
    }

    .hero-left {
        align-items: center;
    }

    .hero-right {
        margin-bottom: 2rem;
    }

    .hero-image-container {
        max-width: 350px;
        bottom: 5px;
    }

    h1,
    .hero-description {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Seção Por Que Escolher */
.why-choose {
    padding: 6rem 2rem;
    background: var(--dark-blue);
    text-align: center;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 2.5rem;
    color: white;
}

/* Seção Preços */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.price-card {
    background: rgba(0, 20, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.3);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price {
    text-align: center;
    margin: 2rem 0;
}

.amount {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: bold;
}

.period {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.features-list i {
    color: var(--secondary);
}

/* Seção Contato */
.transform-section {
    padding: 6rem 2rem;
    background: var(--dark-blue);
    text-align: center;
    overflow-x: hidden; /* Previne scroll horizontal */
    width: 100%;
    max-width: 100vw;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    text-align: left;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--white);
}

.info-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.info-card .phone-link {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.info-card .phone-link:hover {
    color: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #000510 100%);
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-brand {
    padding-right: 2rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-header img {
    height: 95px;
    filter: brightness(0) invert(1);
    max-width: 200px;
    width: auto;
}

.brand-header h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.grupo-confi-tag {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    text-align: center;
    font-style: italic;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.badge i {
    color: var(--secondary);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    align-items: center;
}

.footer-section ul li {
    
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li i {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    gap: 1rem;
}

.contact-info li div {
    display: flex;
    flex-direction: column;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Estilos para páginas legais */
.legal-page {
    background: var(--dark-blue);
    min-height: 100vh;
    color: var(--white);
}

.legal-nav {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-brand i {
    color: var(--secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-content ul li:before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: -1.5rem;
}

/* =================================
   CONFICAST NO FOOTER
   ================================= */

.conficast-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.conficast-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    
}

.conficast-logo-link:hover {
    background: rgba(0, 194, 255, 0.1);
    transform: translateY(-5px);
}

.conficast-logo {
    width: 120px;
    height: auto;
    transition: all 0.3s ease;
}

.conficast-logo-link:hover .conficast-logo {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.conficast-text {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.conficast-logo-link:hover .conficast-text {
    color: var(--white);
}

/* Logo Grupo Confi - mesmo estilo */
.grupo-confi-logo-link {
    margin-top: 1.5rem;
}

.grupo-confi-logo {
    width: 120px;
}

/* =================================
   BANNER CONFICAST NO FOOTER
   ================================= */

.conficast-footer-banner {
    margin-top: 3rem;
    padding: 0 2rem 2rem;
}

.conficast-footer-link {
    display: block;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.conficast-footer-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.5);
}

.conficast-footer-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.conficast-footer-link:hover .conficast-footer-image {
    filter: brightness(1.15);
}

.conficast-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.88), rgba(0, 194, 255, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.conficast-footer-link:hover .conficast-footer-overlay {
    opacity: 1;
}

.conficast-footer-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    animation: pulse-icon 2s infinite;
}

.conficast-footer-overlay span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Responsividade Banner ConfiCast no Footer */

@media (min-width: 1440px) {
    .conficast-footer-banner {
        margin-top: 4rem;
    }

    .conficast-footer-link {
        max-width: 800px;
    }

    .conficast-footer-overlay i {
        font-size: 4rem;
    }

    .conficast-footer-overlay span {
        font-size: 1.6rem;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .conficast-footer-link {
        max-width: 650px;
    }

    .conficast-footer-overlay i {
        font-size: 3.2rem;
    }

    .conficast-footer-overlay span {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .conficast-footer-banner {
        margin-top: 2.5rem;
        padding: 0 1.5rem 1.5rem;
    }

    .conficast-footer-link {
        max-width: 550px;
    }

    .conficast-footer-overlay i {
        font-size: 3rem;
    }

    .conficast-footer-overlay span {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .conficast-footer-banner {
        margin-top: 2rem;
        padding: 0 1rem 1rem;
    }

    .conficast-footer-link {
        max-width: 100%;
        border-radius: 12px;
    }

    .conficast-footer-overlay i {
        font-size: 2.5rem;
    }

    .conficast-footer-overlay span {
        font-size: 1rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .conficast-footer-banner {
        margin-top: 1.5rem;
    }

    .conficast-footer-overlay i {
        font-size: 2rem;
    }

    .conficast-footer-overlay span {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* Responsividade ConfiCast e Grupo Confi no Footer */

@media (max-width: 1023px) {
    .conficast-section {
        align-items: center;
    }

    .conficast-logo,
    .grupo-confi-logo {
        width: 100px;
    }

    .grupo-confi-logo-link {
        margin-top: 1.2rem;
    }
}

@media (max-width: 768px) {
    .conficast-section {
        margin-top: 2rem;
    }

    .conficast-logo-link {
        padding: 0.8rem;
    }

    .conficast-logo,
    .grupo-confi-logo {
        width: 90px;
    }

    .conficast-text {
        font-size: 0.85rem;
    }

    .grupo-confi-logo-link {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .conficast-logo,
    .grupo-confi-logo {
        width: 80px;
    }

    .conficast-text {
        font-size: 0.8rem;
    }

    .grupo-confi-logo-link {
        margin-top: 0.8rem;
    }
}

/* Botão Flutuante do Bot */
.floating-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.bot-button {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient);
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.bot-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-logo {
    width: 30px;
    height: auto;
}

.bot-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bot-button:hover .bot-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
}

/* Animação de entrada do botão */
.floating-bot {
    animation: botEntrance 0.5s 1s ease-out forwards;
    opacity: 0;
}

@keyframes botEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   CHATBOT INTERATIVO
   ================================= */

.bot-button {
    border: none;
    cursor: pointer;
}

.bot-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--gradient));
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Widget do Chatbot */
.chatbot-widget {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
}

.chatbot-widget.active {
    display: flex;
    animation: chatbotSlideIn 0.3s ease-out;
}

@keyframes chatbotSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header do Chatbot */
.chatbot-header {
    background: var(--gradient);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bot-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.bot-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Área de Mensagens */
.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.8rem;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-message .message-avatar {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.message-content {
    background: var(--gradient);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bot-message .message-content {
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* Quick Replies */
.chatbot-quick-replies {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-reply-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

.quick-reply-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Input do Chatbot */
.chatbot-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.chatbot-input button {
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chatbot-input button:hover {
    background: var(--secondary);
}

/* Animação de fade-in para seções */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback para quando JavaScript não está disponível */
.no-js .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVIDADE --- */

/* Telas Grandes (Laptops e Desktops) */
@media (min-width: 1440px) {
    .hero-content,
    .benefits-grid,
    .pricing-grid,
    .contact-container,
    .footer-content {
        max-width: 1400px;
    }

    h1 {
        font-size: 5rem;
    }

    h1 .highlight {
        font-size: 5rem;
    }

    .hero-description {
        font-size: 1.8rem;
    }
}

/* Telas 4K */
@media (min-width: 2560px) {
    html {
        font-size: 18px;
    }

    .hero-content,
    .benefits-grid,
    .pricing-grid,
    .contact-container,
    .footer-content {
        max-width: 2000px;
    }
}

/* Tablets (Paisagem) - Consolidado com hamburger menu */
@media (max-width: 1024px) {
    /* Menu Hamburger para tablets */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        background: transparent;
        border-radius: 0;
        gap: 1rem;
    }

    .nav-menu a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }

    .nav-menu a:hover {
        color: var(--secondary);
    }

    .hamburger-menu {
        display: block;
    }

    /* Outras regras para tablets */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-projection {
        display: none;
    }
    .contact-container {
        gap: 3rem; /* Reduz gap em tablets */
    }
}

/* Tablets (Retrato) e Celulares Grandes */
@media (max-width: 768px) {
    body {
        text-align: center;
    }

    h1, h2, h3 {
        text-align: center;
    }

    .hero-left, .hero-description {
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 4rem 1rem;
    }

    .hero-left {
        align-items: center;
    }

    .hero-right {
        margin-bottom: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 2rem auto 0;
        gap: 1rem;
    }

    .why-choose, .pricing, .transform-section, .footer {
        padding: 4rem 1rem;
    }

    .benefits-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem; /* Reduz gap em mobile */
        margin-top: 2rem; /* Reduz margin em mobile */
    }

    .contact-form-container,
    .contact-info {
        padding: 1.5rem; /* Reduz padding em mobile */
    }

    .info-card {
        padding: 1.5rem; /* Reduz padding dos cards */
        margin-bottom: 1rem;
    }

    .info-card i {
        font-size: 2rem; /* Reduz tamanho do ícone */
        margin-bottom: 0.8rem;
    }

    .info-card h3 {
        font-size: 1.2rem; /* Ajusta tamanho do título */
        margin-bottom: 0.8rem;
    }

    .info-card p {
        font-size: 0.9rem; /* Reduz texto */
        line-height: 1.4;
    }

    .info-card .btn {
        padding: 0.8rem 1.5rem; /* Ajusta padding do botão */
        font-size: 0.9rem;
        width: 100%; /* Botão full width em mobile */
        margin-top: 1rem;
        width: 116px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand, .footer-section {
        align-items: center;
    }

    .brand-header, .trust-badges {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links span {
        display: none;
    }

    .floating-bot {
        bottom: 20px;
        right: 20px;
    }

    .bot-tooltip {
        display: none;
    }

    /* Chatbot responsivo mobile */
    .chatbot-widget {
        width: 90vw;
        max-width: 320px;
        height: 70vh;
        max-height: 450px;
        right: -10px;
    }

    .chatbot-header {
        padding: 0.8rem;
    }

    .bot-info h4 {
        font-size: 0.9rem;
    }

    .bot-status {
        font-size: 0.7rem;
    }

    .quick-reply-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .chatbot-input {
        padding: 0.8rem;
    }

    .chatbot-input input {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Ajustes específicos para contact em telas pequenas */
    .contact-form-container,
    .contact-info {
        padding: 1rem; /* Ainda menos padding */
    }

    .contact-form {
        gap: 1rem; /* Reduz gap entre inputs */
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem; /* Reduz padding dos inputs */
        font-size: 0.9rem;
    }

    .info-card {
        padding: 1rem; /* Ainda menos padding */
        margin-bottom: 0.8rem;
    }

    .info-card i {
        font-size: 1.8rem; /* Menor ainda */
        margin-bottom: 0.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .info-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .info-card .phone-link {
        font-size: 0.9rem;
        margin: 0.2rem 0;
        display: block;
    }

    .info-card .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

/* Media Query para tablets e telas médias (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .contact-container {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }

    .info-card {
        padding: 1.8rem;
    }

    .info-card i {
        font-size: 2.2rem;
    }

    .info-card h3 {
        font-size: 1.15rem;
    }

    .info-card .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Ajustes para telas muito pequenas (320px - 360px) */
@media (max-width: 360px) {
    .contact-form-container,
    .contact-info {
        padding: 0.8rem;
    }

    .info-card {
        padding: 0.8rem;
    }

    .info-card i {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.8rem;
    }

    .info-card .phone-link {
        font-size: 0.85rem;
    }

    .info-card .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* =================================
   NOVAS SEÇÕES DO ROBÔ - OTIMIZADAS
   ================================= */

/* Estilos Base Compartilhados */
.robot-info, .robot-feeding, .main-features, .how-helps, .practical-details {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.robot-info .container, .robot-feeding .container, .main-features .container,
.how-helps .container, .practical-details .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Títulos das Seções */
.robot-info h2, .robot-feeding h2, .main-features h2,
.how-helps h2, .practical-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.robot-info .section-subtitle, .robot-feeding .section-subtitle,
.main-features .section-subtitle, .how-helps .section-subtitle,
.practical-details .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    text-align: center;
}

/* === SEÇÃO 1: O QUE O ROBÔ FAZ === */
.robot-info {
    background: var(--dark-blue);
}

.robot-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.robot-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

.robot-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.robot-feature-card:hover::before {
    left: 100%;
}

.robot-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.2);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.robot-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--white);
}

.robot-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SEÇÃO 2: COMO O ROBÔ SE ALIMENTA === */
.robot-feeding {
    background: linear-gradient(135deg, var(--dark), var(--dark-blue));
}

.feeding-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.feeding-method-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 350px;
    position: relative;
}

.feeding-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 194, 255, 0.15);
    border-color: var(--secondary);
}

.feeding-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.feeding-method-card:hover .feeding-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 194, 255, 0.4);
}

.feeding-icon i {
    font-size: 2.2rem;
    color: white;
}

.feeding-method-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.feeding-method-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SEÇÃO 3: FUNCIONALIDADES PRINCIPAIS === */
.main-features {
    background: var(--dark-blue);
}

.main-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.main-feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 450px;
}

.main-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.main-feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 194, 255, 0.4);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-content {
    text-align: left;
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SEÇÃO 4: COMO ELE PODE AJUDAR === */
.how-helps {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
}

.help-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.help-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 420px;
}

.help-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-content {
    text-align: left;
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SEÇÃO 5: DETALHES PRÁTICOS === */
.practical-details {
    background: var(--dark-blue);
}

.practical-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.practical-detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 420px;
}

.practical-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.practical-detail-card:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 194, 255, 0.4);
}

.detail-icon i {
    font-size: 1.8rem;
    color: white;
}

.detail-content {
    text-align: left;
    flex: 1;
}

.detail-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* =================================
   RESPONSIVIDADE OTIMIZADA
   ================================= */

/* Telas Grandes (1440px+) */
@media (min-width: 1440px) {
    .robot-info h2, .robot-feeding h2, .main-features h2,
    .how-helps h2, .practical-details h2 {
        font-size: 3rem;
    }

    .robot-info .section-subtitle, .robot-feeding .section-subtitle,
    .main-features .section-subtitle, .how-helps .section-subtitle,
    .practical-details .section-subtitle {
        font-size: 1.4rem;
    }

    .robot-features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 4rem auto 0;
    }

    .feeding-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
        margin: 4rem auto 0;
    }

    .main-features-list, .help-benefits-grid, .practical-details-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 4rem auto 0;
    }
}

/* Laptops (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .robot-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feeding-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .main-features-list, .help-benefits-grid, .practical-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .robot-info, .robot-feeding, .main-features, .how-helps, .practical-details {
        padding: 4rem 0;
    }

    .robot-info .container, .robot-feeding .container, .main-features .container,
    .how-helps .container, .practical-details .container {
        padding: 0 1.5rem;
    }

    .robot-info h2, .robot-feeding h2, .main-features h2,
    .how-helps h2, .practical-details h2 {
        font-size: 2.2rem;
    }

    .robot-features-grid, .feeding-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .main-features-list, .help-benefits-grid, .practical-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-feature-item, .help-benefit-card, .practical-detail-card {
        max-width: 100%;
    }
}

/* Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .robot-info, .robot-feeding, .main-features, .how-helps, .practical-details {
        padding: 3rem 0;
    }

    .robot-info .container, .robot-feeding .container, .main-features .container,
    .how-helps .container, .practical-details .container {
        padding: 0 1rem;
    }

    .robot-info h2, .robot-feeding h2, .main-features h2,
    .how-helps h2, .practical-details h2 {
        font-size: 2rem;
    }

    .robot-features-grid, .feeding-methods-grid, .main-features-list,
    .help-benefits-grid, .practical-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .robot-feature-card, .feeding-method-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .main-feature-item, .help-benefit-card, .practical-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        max-width: 100%;
    }

    .feature-content, .benefit-content, .detail-content {
        text-align: center;
    }

    .feature-icon, .benefit-icon, .detail-icon {
        margin-bottom: 0;
    }
}

/* Mobile Pequeno (320px - 480px) */
@media (max-width: 480px) {
    .robot-info, .robot-feeding, .main-features, .how-helps, .practical-details {
        padding: 2.5rem 0;
    }

    .robot-info .container, .robot-feeding .container, .main-features .container,
    .how-helps .container, .practical-details .container {
        padding: 0 1rem;
    }

    .robot-info h2, .robot-feeding h2, .main-features h2,
    .how-helps h2, .practical-details h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .robot-info .section-subtitle, .robot-feeding .section-subtitle,
    .main-features .section-subtitle, .how-helps .section-subtitle,
    .practical-details .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .robot-features-grid, .feeding-methods-grid, .main-features-list,
    .help-benefits-grid, .practical-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .robot-feature-card, .feeding-method-card {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .main-feature-item, .help-benefit-card, .practical-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
        max-width: 100%;
    }

    .feature-content, .benefit-content, .detail-content {
        text-align: center;
    }

    .feeding-icon {
        width: 70px;
        height: 70px;
    }

    .feeding-icon i {
        font-size: 2rem;
    }

    .feature-icon, .benefit-icon, .detail-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }

    .feature-icon i, .benefit-icon i, .detail-icon i {
        font-size: 1.6rem;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
    }

    .icon-circle i {
        font-size: 2rem;
    }

    .robot-feature-card h3, .feeding-method-card h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
    }

    .feature-content h3, .benefit-content h3, .detail-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .robot-feature-card p, .feeding-method-card p,
    .feature-content p, .benefit-content p, .detail-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Mobile Extra Pequeno (até 320px) */
@media (max-width: 320px) {
    .robot-info, .robot-feeding, .main-features, .how-helps, .practical-details {
        padding: 2rem 0;
    }

    .robot-info .container, .robot-feeding .container, .main-features .container,
    .how-helps .container, .practical-details .container {
        padding: 0 0.8rem;
    }

    .robot-feature-card, .feeding-method-card,
    .main-feature-item, .help-benefit-card, .practical-detail-card {
        padding: 1.5rem 0.8rem;
    }

    .feeding-icon, .feature-icon, .benefit-icon, .detail-icon {
        width: 50px;
        height: 50px;
    }

    .feeding-icon i, .feature-icon i, .benefit-icon i, .detail-icon i {
        font-size: 1.4rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.8rem;
    }
}

/* =================================
   SEÇÃO GRUPO CONFI - VÍDEO BACKGROUND
   ================================= */

.grupo-confi {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Vídeo Background - ocupa toda a seção */
.grupo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Containers não utilizados - removidos */
.grupo-confi-video,
.video-container {
    display: none;
}

/* Overlay escuro sobre o vídeo */
.grupo-confi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 20, 51, 0.85) 0%,
        rgba(0, 102, 255, 0.75) 50%,
        rgba(0, 194, 255, 0.65) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Overlay adicional para melhor legibilidade */
.grupo-confi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 51, 0.3);
    z-index: 3;
    pointer-events: none;
}

.grupo-confi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 4;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grupo-confi-content {
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Container para o botão - agora dentro do youtube-player-container */
.grupo-confi-button {
    margin-top: 1.2rem;
    text-align: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.6rem;
}

.grupo-confi-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.grupo-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.grupo-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.grupo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.highlight-item i {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.4);
}

.btn-conhecer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 280px;
}

.btn-conhecer:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.6);
    text-decoration: none;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.btn-conhecer i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-conhecer:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Estilos do Player do YouTube */

/* Mobile First - Um abaixo do outro */
.youtube-player-container {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.youtube-player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.youtube-player-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 194, 255, 0.4);
    border-color: rgba(0, 194, 255, 0.5);
}

.youtube-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}


/* Tablets - Ainda empilhado mas mais espaçoso */
@media (min-width: 768px) and (max-width: 1023px) {
    .youtube-player-container {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop - Layout lado a lado */
@media (min-width: 1024px) {
    .grupo-confi-content {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 3rem;
        align-items: start;
    }

    .grupo-confi-text {
        padding-right: 1rem;
    }

    .youtube-player-container {
        margin-top: 0;
        max-width: 420px;
        position: sticky;
        top: 100px;
    }

    .youtube-player-wrapper {
        border-radius: 20px;
    }

    .youtube-player-wrapper iframe {
        border-radius: 17px;
    }

    .grupo-confi-button {
        margin-top: 1.5rem;
    }
}

/* Desktop Grande - Player maior */
@media (min-width: 1440px) {
    .grupo-confi-content {
        grid-template-columns: 1fr 500px;
        gap: 4rem;
    }

    .youtube-player-container {
        max-width: 500px;
    }

    .grupo-confi-text {
        padding-right: 2rem;
    }
}

/* Responsividade da Seção Grupo Confi */

/* Telas muito grandes (1440px+) */
@media (min-width: 1440px) {
    .grupo-confi .container {
        padding: 4rem 2rem;
        max-width: 1400px;
    }

    .grupo-confi-text h2 {
        font-size: 4rem;
    }

    .grupo-subtitle {
        font-size: 1.6rem;
    }

    .grupo-description {
        font-size: 1.3rem;
    }

    .btn-conhecer {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        max-width: 350px;
        gap: 0.7rem;
    }

    .btn-conhecer i {
        font-size: 1.2rem;
    }
}

/* Laptops (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .grupo-confi .container {
        padding: 3rem 2rem;
    }

    .grupo-confi-text h2 {
        font-size: 2.8rem;
    }

    .grupo-subtitle {
        font-size: 1.3rem;
    }

    .grupo-description {
        font-size: 1.1rem;
    }

    .btn-conhecer {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        max-width: 320px;
        gap: 0.6rem;
    }

    .btn-conhecer i {
        font-size: 1.1rem;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .grupo-confi .container {
        padding: 2.5rem 1.5rem;
        height: 100vh;
    }

    .grupo-confi-content {
        max-width: 700px;
    }

    .grupo-confi-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .grupo-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .grupo-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .grupo-highlights {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
        margin-bottom: 0;
    }

    .highlight-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-conhecer {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
        max-width: 300px;
        gap: 0.5rem;
    }

    .btn-conhecer i {
        font-size: 1rem;
    }
}

/* Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .grupo-confi {
        min-height: 100vh;
    }

    .grupo-confi .container {
        padding: 2rem 1rem;
        height: 100vh;
    }

    .grupo-confi-content {
        max-width: 100%;
    }

    .grupo-confi-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .grupo-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .grupo-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .grupo-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 0;
    }

    .highlight-item {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .btn-conhecer {
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
        max-width: 260px;
    }

    .btn-conhecer i {
        font-size: 0.95rem;
    }
}

/* Mobile Pequeno (320px - 480px) */
@media (max-width: 480px) {
    .grupo-confi {
        min-height: 100vh;
    }

    .grupo-confi .container {
        padding: 1.5rem 1rem;
        height: 100vh;
    }

    .grupo-confi-content {
        max-width: 100%;
    }

    .grupo-confi-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .grupo-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .grupo-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }

    .grupo-highlights {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 0;
    }

    .highlight-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.6rem;
        border-radius: 20px;
    }

    .highlight-item i {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
    }

    .btn-conhecer {
        padding: 0.65rem 1.2rem;
        font-size: 0.8rem;
        max-width: 240px;
        gap: 0.4rem;
    }

    .btn-conhecer i {
        font-size: 0.9rem;
    }
}

/* Mobile Extra Pequeno (até 320px) */
@media (max-width: 320px) {
    .grupo-confi {
        min-height: 100vh;
    }

    .grupo-confi .container {
        padding: 1rem 0.8rem;
        height: 100vh;
    }

    .grupo-confi-content {
        max-width: 100%;
    }

    .grupo-confi-text h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }

    .grupo-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .grupo-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .grupo-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .highlight-item {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        gap: 0.5rem;
        border-radius: 15px;
    }

    .highlight-item i {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }

    .btn-conhecer {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        max-width: 220px;
        gap: 0.4rem;
    }

    .btn-conhecer i {
        font-size: 0.85rem;
    }
}

/* Mobile Landscape (orientação paisagem) */
@media (max-height: 500px) and (orientation: landscape) {
    .grupo-confi .container {
        padding: 1rem 2rem;
        height: 100vh;
    }

    .grupo-confi-content {
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .grupo-confi-text h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .grupo-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .grupo-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .grupo-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .highlight-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.4rem;
        border-radius: 12px;
    }

    .highlight-item i {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }

    .btn-conhecer {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        max-width: 200px;
        gap: 0.3rem;
    }

    .btn-conhecer i {
        font-size: 0.8rem;
    }
}

/* Ajustes para dispositivos muito pequenos em landscape */
@media (max-height: 400px) and (orientation: landscape) {
    .grupo-confi .container {
        padding: 0.5rem 1.5rem;
    }

    .grupo-confi-text h2 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .grupo-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .grupo-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .grupo-highlights {
        gap: 0.3rem;
    }

    .highlight-item {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    .btn-conhecer {
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
        max-width: 180px;
        gap: 0.3rem;
    }

    .btn-conhecer i {
        font-size: 0.75rem;
    }
}

/* =================================
   SISTEMA DE CAPTAÇÃO DE LEADS
   ================================= */

/* Modal de Lead Magnet - OTIMIZADO */
.lead-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 51, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeInModal 0.3s ease;
}

.lead-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-modal-content {
    background: linear-gradient(135deg, var(--white), #f8f9ff);
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.4s ease;
    color: var(--dark);
    overflow-y: auto;
}

.lead-modal-close {
    color: #666;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lead-modal-close:hover {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead-modal-header h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.lead-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.lead-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.benefit-item i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Formulário de Lead */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.lead-input {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark);
}

.lead-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.lead-input::placeholder {
    color: #999;
}

.lead-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.lead-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.3;
    margin-top: 1rem;
}

.lead-guarantee i {
    color: #28a745;
}

/* CNPJ Section */
.cnpj-section {
    margin: 1rem 0;
}

.checkbox-container {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    gap: 0.5rem;
}

.cnpj-checkbox {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.cnpj-checkbox:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.cnpj-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cnpj-input {
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Sticky de Lead */
.sticky-lead-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    z-index: 9999;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDownBanner 0.5s ease;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.banner-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.banner-close:hover {
    opacity: 1;
}

/* Animações */
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInModal {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownBanner {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* === RESPONSIVO COMPLETO PARA LEAD MODAL === */

/* Telas Muito Grandes (4K+) */
@media (min-width: 2560px) {
    .lead-modal-content {
        max-width: 665px;
        padding: 4rem;
        margin: 3rem;
        border-radius: 25px;
    }

    .lead-modal-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .lead-subtitle {
        font-size: 1.2rem;
    }

    .benefit-item {
        font-size: 1.3rem;
        padding: 1rem 0;
        gap: 1rem;
    }

    .benefit-item i {
        font-size: 1.5rem;
    }

    .lead-input {
        padding: 1.5rem;
        font-size: 1.2rem;
        border-radius: 15px;
    }

    .lead-btn {
        padding: 1.5rem;
        font-size: 1.3rem;
        border-radius: 15px;
    }

    .banner-content {
        padding: 1.5rem;
    }

    .banner-text {
        font-size: 1.1rem;
    }

    .banner-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .checkbox-label {
        font-size: 1.2rem;
    }

    .checkmark {
        width: 25px;
        height: 25px;
    }

    .lead-guarantee {
        font-size: 1.1rem;
    }
}

/* Telas Grandes (Desktop) */
@media (min-width: 1440px) and (max-width: 2559px) {
    .lead-modal-content {
        max-width: 600px;
        padding: 3rem;
        margin: 2.5rem;
        border-radius: 22px;
    }

    .lead-modal-header h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .lead-subtitle {
        font-size: 1.1rem;
    }

    .benefit-item {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        gap: 0.9rem;
    }

    .benefit-item i {
        font-size: 1.3rem;
    }

    .lead-input {
        padding: 1.3rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .lead-btn {
        padding: 1.4rem;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .banner-content {
        padding: 1.2rem;
    }

    .banner-text {
        font-size: 1rem;
    }

    .banner-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .checkbox-label {
        font-size: 1.1rem;
    }

    .checkmark {
        width: 22px;
        height: 22px;
    }
}

/* Laptops e Desktops Padrão */
@media (min-width: 1024px) and (max-width: 1439px) {
    .lead-modal-content {
        max-width: 520px;
        padding: 2.5rem;
        margin: 2rem;
        border-radius: 20px;
    }

    .lead-modal-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .lead-subtitle {
        font-size: 1rem;
    }

    .benefit-item {
        font-size: 1rem;
        padding: 0.7rem 0;
        gap: 0.8rem;
    }

    .benefit-item i {
        font-size: 1.2rem;
    }

    .lead-input {
        padding: 1.1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .lead-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .banner-content {
        padding: 1rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .banner-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .checkbox-label {
        font-size: 1rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }
}

/* Tablets em Paisagem */
@media (min-width: 768px) and (max-width: 1023px) {
    .lead-modal-content {
        max-width: 480px;
        padding: 2rem;
        margin: 1.5rem;
        border-radius: 18px;
    }

    .lead-modal-header h2 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .lead-subtitle {
        font-size: 0.95rem;
    }

    .benefit-item {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        gap: 0.75rem;
    }

    .benefit-item i {
        font-size: 1.1rem;
    }

    .lead-input {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .lead-btn {
        padding: 1.1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .banner-content {
        padding: 1rem;
        flex-direction: row;
        gap: 0.8rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }

    .banner-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.95rem;
    }

    .checkmark {
        width: 19px;
        height: 19px;
    }

    .lead-guarantee {
        font-size: 0.85rem;
    }
}

/* Tablets em Retrato e Celulares Grandes */
@media (max-width: 767px) {
    .lead-modal.show {
        padding: 0.5rem;
    }

    .lead-modal-content {
        padding: 1.5rem;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 12px;
        overflow-y: auto;
    }

    .lead-modal-header {
        margin-bottom: 1rem;
        flex-shrink: 0;
    }

    .lead-modal-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .lead-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .lead-benefits {
        margin-bottom: 1rem;
        flex-shrink: 0;
    }

    .benefit-item {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        align-items: flex-start;
    }

    .benefit-item i {
        font-size: 0.9rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .benefit-item span {
        line-height: 1.3;
    }

    .lead-form {
        gap: 0.8rem;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }

    .lead-input {
        padding: 0.9rem;
        font-size: 0.9rem;
        border-radius: 8px;
        min-height: 48px; /* Mínimo para touch */
    }

    .lead-btn {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        min-height: 50px;
    }

    .cnpj-section {
        margin: 0.8rem 0;
    }

    .checkbox-container {
        margin-bottom: 0.8rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .cnpj-checkbox:checked + .checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 8px;
    }

    .cnpj-input {
        margin-top: 0.5rem;
    }

    .lead-guarantee {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.8rem;
        flex-shrink: 0;
    }

    .lead-modal-close {
        font-size: 1.6rem;
        right: 0.8rem;
        top: 0.6rem;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-content {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
        padding: 0.6rem;
    }

    .banner-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .banner-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    .lead-modal.show {
        padding: 0.3rem;
    }

    .lead-modal-content {
        padding: 1.2rem;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 10px;
        overflow-y: auto;
    }

    .lead-modal-header {
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .lead-modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .lead-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .lead-benefits {
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .benefit-item {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        gap: 0.4rem;
        margin-bottom: 0.4rem;
        align-items: flex-start;
    }

    .benefit-item i {
        font-size: 0.85rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .benefit-item span {
        line-height: 1.3;
    }

    .lead-form {
        gap: 0.7rem;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .lead-input {
        padding: 0.7rem;
        font-size: 0.8rem;
        border-radius: 8px;
        min-height: 42px;
    }

    .lead-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
        min-height: 44px;
    }

    .cnpj-section {
        margin: 0.6rem 0;
    }

    .checkbox-container {
        margin-bottom: 0.6rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .checkmark {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .cnpj-checkbox:checked + .checkmark::after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 7px;
    }

    .cnpj-input {
        margin-top: 0.4rem;
    }

    .lead-guarantee {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-top: 0.6rem;
        flex-shrink: 0;
    }

    .lead-modal-close {
        font-size: 1.4rem;
        right: 0.6rem;
        top: 0.4rem;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-content {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .banner-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .banner-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-height: 32px;
    }
}

/* Celulares Muito Pequenos */
@media (max-width: 360px) {
    .lead-modal-content {
        margin: 0.2rem;
        padding: 0.6rem;
        max-width: calc(100vw - 0.4rem);
        max-height: 92vh;
        border-radius: 8px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .lead-modal-header {
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .lead-modal-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }

    .lead-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .lead-benefits {
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .benefit-item {
        font-size: 0.75rem;
        padding: 0.2rem 0;
        gap: 0.3rem;
        margin-bottom: 0.3rem;
        align-items: flex-start;
    }

    .benefit-item i {
        font-size: 0.8rem;
        margin-top: 0.05rem;
        flex-shrink: 0;
    }

    .benefit-item span {
        line-height: 1.2;
    }

    .lead-form {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .lead-input {
        padding: 0.6rem;
        font-size: 0.75rem;
        border-radius: 6px;
        min-height: 40px;
    }

    .lead-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
        border-radius: 6px;
        min-height: 42px;
    }

    .cnpj-section {
        margin: 0.5rem 0;
    }

    .checkbox-container {
        margin-bottom: 0.5rem;
    }

    .checkbox-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .checkmark {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .cnpj-checkbox:checked + .checkmark::after {
        left: 3px;
        top: 0px;
        width: 3px;
        height: 6px;
    }

    .cnpj-input {
        margin-top: 0.3rem;
    }

    .lead-guarantee {
        font-size: 0.65rem;
        line-height: 1.2;
        margin-top: 0.5rem;
        flex-shrink: 0;
    }

    .lead-modal-close {
        font-size: 1.2rem;
        right: 0.4rem;
        top: 0.3rem;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-content {
        padding: 0.3rem;
        gap: 0.2rem;
    }

    .banner-text {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .banner-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-height: 30px;
    }
}

/* Dispositivos com Altura Limitada */
@media (max-height: 700px) and (max-width: 768px) {
    .lead-modal-content {
        max-height: 85vh;
        overflow-y: auto;
        margin: 0.3rem;
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
    }

    .lead-modal-header {
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .lead-modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .lead-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .lead-benefits {
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .benefit-item {
        font-size: 0.8rem;
        padding: 0.2rem 0;
        margin-bottom: 0.3rem;
        gap: 0.4rem;
        align-items: flex-start;
    }

    .benefit-item i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .benefit-item span {
        line-height: 1.2;
    }

    .lead-form {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .lead-input {
        padding: 0.6rem;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .lead-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
        min-height: 42px;
    }

    .cnpj-section {
        margin: 0.6rem 0;
    }

    .checkbox-container {
        margin-bottom: 0.6rem;
    }

    .lead-guarantee {
        font-size: 0.75rem;
        margin-top: 0.6rem;
        flex-shrink: 0;
    }
}

/* Dispositivos em Orientação Paisagem com Altura Muito Limitada */
@media (orientation: landscape) and (max-height: 500px) {
    .lead-modal-content {
        max-height: 95vh;
        overflow-y: auto;
        padding: 0.6rem;
        margin: 0.2rem;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
    }

    .lead-modal-header {
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .lead-modal-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }

    .lead-subtitle {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .lead-benefits {
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .benefit-item {
        font-size: 0.75rem;
        padding: 0.15rem 0;
        margin-bottom: 0.25rem;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .benefit-item i {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .benefit-item span {
        line-height: 1.1;
    }

    .lead-form {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }

    .lead-input {
        padding: 0.5rem;
        font-size: 0.75rem;
        min-height: 38px;
        border-radius: 6px;
    }

    .lead-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        min-height: 40px;
        border-radius: 6px;
    }

    .cnpj-section {
        margin: 0.4rem 0;
    }

    .checkbox-container {
        margin-bottom: 0.4rem;
    }

    .checkbox-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .checkmark {
        width: 16px;
        height: 16px;
    }

    .cnpj-input {
        margin-top: 0.3rem;
    }

    .lead-guarantee {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-top: 0.4rem;
        flex-shrink: 0;
    }

    .lead-modal-close {
        font-size: 1.2rem;
        width: 24px;
        height: 24px;
        right: 0.4rem;
        top: 0.2rem;
    }

    .banner-content {
        padding: 0.3rem;
        gap: 0.2rem;
    }

    .banner-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .banner-btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        min-height: 28px;
    }
}

/* Dispositivos Muito Baixos (como alguns smartphones em landscape) */
@media (max-height: 400px) {
    .lead-modal-content {
        max-height: 98vh;
        overflow-y: auto;
        padding: 0.4rem;
        margin: 0.1rem;
        border-radius: 6px;
    }

    .lead-modal-header h2 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .lead-subtitle {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .benefit-item {
        font-size: 0.7rem;
        padding: 0.1rem 0;
        margin-bottom: 0.2rem;
        gap: 0.2rem;
    }

    .benefit-item i {
        font-size: 0.75rem;
    }

    .lead-form {
        gap: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .lead-input {
        padding: 0.4rem;
        font-size: 0.7rem;
        min-height: 36px;
    }

    .lead-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
        min-height: 38px;
    }

    .cnpj-section {
        margin: 0.3rem 0;
    }

    .checkbox-label {
        font-size: 0.7rem;
    }

    .checkmark {
        width: 14px;
        height: 14px;
    }

    .lead-guarantee {
        font-size: 0.65rem;
        margin-top: 0.3rem;
    }

    .lead-modal-close {
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
        right: 0.3rem;
        top: 0.1rem;
    }
}

/* Botão Flutuante de Interesse */
.floating-interest-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: none;
    animation: bounceFloat 2s infinite;
}

.floating-interest-btn button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.floating-interest-btn button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.floating-interest-btn button i {
    font-size: 1.1rem;
}

/* Animação de flutuação */
@keyframes bounceFloat {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsivo para botão flutuante */
@media (max-width: 768px) {
    .floating-interest-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-interest-btn button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-interest-btn button {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* Estilos para botões do chatbot */
.message-content button {
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.message-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.message-content button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsivo para botões do chatbot */
@media (max-width: 480px) {
    .message-content button {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .message-content div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .message-content div[style*="flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}