/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #014cdc;
    --primary-dark: #001993;
    --secondary: #0266ec;
    --accent: #32abfc;
    --accent-dark: #1e3a8a;
    --tech-neon: #1e3a8a;
    --dark: #000a82;
    --darker: #01085c;
    --light: #f8fafc;
    --lighter: #ffffff;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #1e3a8a;
    --error: #ef4444;
    --warning: #f59e0b;
    --primary-light: #1e3a8a;
    --dark-gray: #64748b;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --box-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.15s ease-in-out;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark, #001993);
    border-radius: 10px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary, #014cdc);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark, #001993) #f1f1f1;
}

/* Animações Globais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes countPulse {
    0% {
        text-shadow: 0 0 0 rgba(30, 58, 138, 0);
    }
    50% {
        text-shadow: 0 0 20px rgba(30, 58, 138, 0.5);
    }
    100% {
        text-shadow: 0 0 0 rgba(30, 58, 138, 0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-bottom: 1.2em;
    color: var(--dark-gray);
    font-weight: 400;
}

.img-logo {
    width: 80px;
    height: auto;
    transition: var(--transition);
}

.img-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-size: 200% 200%;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius-xs);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 350px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    animation: pulse 2s infinite;
}

#contactForm .btn-primary {
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

#contactForm .btn-primary i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    padding-bottom: 2px;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-link:hover {
    color: var(--primary);
}

/* Títulos de seção */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    color: var(--dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto;
    border-radius: 2px;
    animation: pulse 3s infinite;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--dark);
    transition: var(--transition-fast);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.mobile-menu:hover {
    background-color: rgba(30, 58, 138, 0.1);
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    padding: 150px 0 40px;
    background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    animation: rotate 30s linear infinite;
}

.hero .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-complement {
    font-size: 0.95rem;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-image-badge {
    min-width: 400px;
    position: absolute;
    bottom: -20px;
    left: 30%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: pulse 3s infinite;
}

.hero-image:hover .hero-image-badge {
    transform: translateX(-50%) translateY(-10px);
}

/* Benefits Section */
.benefits {
    padding: 40px 0;
    background-color: var(--lighter);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--lighter);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    padding: 40px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.solutions-tabs {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.tab-buttons {
    display: flex;
    background: var(--lighter);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}

.tab-button {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-button.active {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.05);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.tab-content {
    display: none;
    background: var(--lighter);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
}

.tab-text {
    flex: 1;
    min-width: 300px;
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.tab-text p {
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 3px;
}

.tab-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tab-image img {
    width: 100%;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.tab-image:hover img {
    transform: translateY(-10px) scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.tab-image:hover .image-badge {
    transform: translateY(-10px) translateX(-10px);
}

/* Demo Section */
.demo {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.demo .section-title {
    color: white;
}

.demo .section-title::after {
    background: var(--tech-neon);
}

.demo-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.demo-text {
    flex: 1;
    min-width: 300px;
}

.demo-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.demo-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* Imagem principal */
.demo-img-main {
    width: 100%;
    max-width: 550px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    background: white;
    padding: 2px;
}

.demo-image:hover .demo-img-main {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Imagem flutuante */
.demo-img-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 650px;
    max-width: 50%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    z-index: 2;
    transition: var(--transition);
    background: white;
    padding: 2px;
}

.demo-image:hover .demo-img-float {
    transform: scale(1.05) translateY(-5px) translateX(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.demo-badge {
    position: absolute;
    bottom: -15px;
    right: 0%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    min-width: 200px;
    animation: pulse 3s infinite;
    z-index: 3;
    white-space: nowrap;
}

.demo-image:hover .demo-badge {
    transform: translateX(-50%) translateY(-10px);
}

.demo-badge i {
    color: var(--success);
}

/* Demo Options */
.demo-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.demo-option {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-option:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.demo-option-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
}

.demo-option:hover .demo-option-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--tech-neon);
}

.demo-option-info {
    flex: 1;
}

.demo-option-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.demo-option-info p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-demo-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-xs);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-demo-option:hover {
    background: var(--tech-neon);
    transform: translateY(-2px);
    gap: 12px;
}


/* Partners Section */
.partners-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    padding: 5px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    flex: 0 0 calc(10% - 10px);
    max-width: calc(10% - 10px);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--box-shadow-md);
}

.partner-card img {
    max-width: 100%;
    max-height: 90px;
    border-radius: 5px;
    width: auto;
    height: auto;
    transition: var(--transition);
}

.partner-card:hover img {
    transform: scale(1.05);
}


/* Contact Section */
.contact {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: var(--tech-neon);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-method:hover i {
    background: var(--primary);
    transform: scale(1.1) rotate(10deg);
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--accent);
}

.contact-method a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--light-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(360deg);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--lighter);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-xs);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-fast);
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

/* Footer */
footer {
    background-color: var(--darker);
    color: var(--text-light);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: white;
}

.footer-logo-img {
    width: 40px;
    height: auto;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(30deg) scale(1.1);
}

.footer-logo p {
    opacity: 0.7;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition-fast);
    color: var(--text-light);
}

.footer-contact p:hover {
    opacity: 1;
    color: var(--tech-neon);
    transform: translateX(5px);
}

.footer-contact i {
    font-size: 1.1rem;
    color: var(--tech-neon);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 0px;
    z-index: 100;
    transition: var(--transition);
    width: 60px;
    height: 60px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    display: none;
}

/* ============================================= */
/*               RESPONSIVIDADE                  */
/* ============================================= */

@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .partner-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 12px 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .img-logo {
        width: 60px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--lighter);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--box-shadow);
        z-index: 999;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-right: 0;
        margin-top: 80px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image-badge {
        left: 2%;
        min-width: 340px;
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .solutions-tabs {
        margin-top: 30px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-button {
        padding: 15px;
        text-align: center;
    }

    .tab-button.active::after {
        height: 3px;
        width: 100%;
        bottom: 0;
        top: auto;
    }

    .tab-content-inner {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .tab-image {
        order: -1;
    }

    .image-badge {
        right: 0;
        bottom: -10px;
    }

    .demo-content {
        flex-direction: column;
        gap: 30px;
    }

    .demo-text {
        text-align: center;
    }

    .demo-badge {
        min-width: 150px;
        font-size: 0.85rem;
        white-space: normal;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .demo-img-float {
        width: 200px;
        bottom: -15px;
        right: -15px;
        border-width: 3px;
        padding: 4px;
    }
    
    .demo-img-main {
        max-width: 100%;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-text {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .partners-grid {
        gap: 10px;
    }

    .partner-card {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-links ul,
    .footer-contact p {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .map-container {
        height: 400px;
    }

    .map-card .card-header {
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .map-legend {
        flex-direction: column;
        align-items: center;
    }

    .demo-option {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .demo-option-info {
        text-align: center;
    }
    
    .demo-option:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 50px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tab-content-inner {
        padding: 20px 15px;
    }

    .tab-text h3 {
        font-size: 1.5rem;
    }

    .demo-badge {
        min-width: 20px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .demo-img-float {
        width: 300px;
        bottom: -30px;
        right: 200px;
        border-width: 3px;
        padding: 3px;
        margin: 10px;
    }

    .demo-option {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .demo-option-info {
        text-align: center;
    }
    
    .demo-option:hover {
        transform: translateY(-5px);
    }
    
    .demo-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .demo-option-info h3 {
        font-size: 1rem;
    }
    
    .btn-demo-option {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .partners-grid {
        gap: 8px;
    }
    
    .partner-card {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .map-container {
        height: 350px;
    }

    .map-card .card-header {
        max-width: 260px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .demo-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .demo-option-info h3 {
        font-size: 1rem;
    }
    
    .btn-demo-option {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-text h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-image-badge {
        min-width: 250px;
        font-size: 0.75rem;
    }
}
