/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0097b2;
    --primary-dark: #007a94;
    --primary-light: #00b8d4;
    --secondary-color: #4db8d4;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-blue: #E8F4F7;
    --gradient-primary: linear-gradient(135deg, #0097b2 0%, #4db8d4 100%);
    --gradient-hero: linear-gradient(135deg, #E8F4F7 0%, #FFFFFF 100%);
    --gradient-section: linear-gradient(135deg, #FFFFFF 0%, #E8F4F7 100%);
    --shadow-sm: 0 2px 8px rgba(0, 151, 178, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 151, 178, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 151, 178, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
    animation: pulse-banner 2s ease-in-out infinite;
}

@keyframes pulse-banner {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.urgency-banner p {
    margin: 0;
    color: var(--white);
}

.urgency-banner strong {
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

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

.nav-menu a:not(.btn-login) {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-menu a:not(.btn-login):hover::after {
    width: 100%;
}

.btn-login {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
    line-height: normal;
    position: relative;
}

.btn-login::after {
    display: none !important;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--white) !important;
    color: var(--primary-color) !important;
}

.btn-login:visited,
.btn-login:active,
.btn-login:focus {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    outline: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 151, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hero-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-guarantee {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    font-weight: 500;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.dashboard-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    background: #000;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: floatDashboard 3s ease-in-out infinite;
}

@keyframes floatDashboard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.dashboard-container:hover {
    box-shadow: 0 20px 60px rgba(0, 151, 178, 0.3);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
}

.dashboard-container:hover .dashboard-image {
    transform: scale(1.01);
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.dashboard-highlight {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 151, 178, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.device-wrapper {
    position: relative;
    height: 500px;
}

.device {
    position: absolute;
    border-radius: 20px;
    background: #000;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.device:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.device.phone {
    width: 200px;
    height: 400px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: floatDevicePhone 3s ease-in-out infinite;
}

.device.tablet {
    width: 300px;
    height: 400px;
    top: 0;
    left: 20%;
    z-index: 1;
    opacity: 0.8;
    animation: floatDeviceTablet 3s ease-in-out infinite 0.5s;
}

@keyframes floatDevicePhone {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes floatDeviceTablet {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-header {
    display: flex;
    gap: 10px;
}

.dashboard-card {
    flex: 1;
    height: 80px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--white);
}

.card-label {
    font-size: 10px;
    opacity: 0.9;
}

.card-value {
    font-size: 18px;
    font-weight: 700;
}

.dashboard-charts {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 100px;
    padding: 10px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.dashboard-menu {
    display: flex;
    gap: 10px;
    padding: 10px;
    justify-content: center;
}

.menu-item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-blue);
}

.menu-item.active {
    background: var(--primary-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.grid-item {
    height: 60px;
    background: var(--light-blue);
    border-radius: 8px;
}

.chart-line {
    height: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slide 2s infinite;
}

@keyframes slide {
    to {
        left: 100%;
    }
}

.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    animation: bounce 2s ease-in-out infinite;
    transition: var(--transition);
}

.chat-bubble:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.chat-bubble svg,
.chat-bubble .whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

/* Section 2 */
.section-2 {
    padding: 80px 0;
    background: var(--white);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.section-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: var(--gradient-section);
}

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

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.solution-card:hover .solution-icon svg {
    transform: rotate(360deg) scale(1.1);
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Modules Section */
.modules-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.module-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.module-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 15px;
    transition: var(--transition);
}

.module-card:hover .module-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.module-icon svg {
    width: 32px;
    height: 32px;
}

.module-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.module-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.module-features {
    list-style: none;
    flex-grow: 1;
}

.module-features li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.modules-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-blue);
}

.modules-cta .cta-buttons {
    justify-content: center;
    display: flex;
}

.modules-highlight {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: var(--white);
}

.approach-section .container {
    display: flex;
    flex-direction: column;
}

.approach-section .section-title-large {
    margin-bottom: 60px;
    align-self: flex-start;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.approach-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.approach-text h3 {
    margin-top: 0;
}

.approach-image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.approach-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-cta {
    margin-top: 30px;
}

/* Dashboard Mockup Styles */
.dashboard-mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    background: #000;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    animation: floatDashboard 3s ease-in-out infinite;
}

.dashboard-mockup-screen {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.mockup-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.mockup-subtitle {
    font-size: 14px;
    color: #666;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards Row */
.mockup-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-card-green,
.mockup-card-blue {
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mockup-card-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.mockup-card-blue {
    background: linear-gradient(135deg, #0097b2 0%, #007a91 100%);
    color: white;
}

.mockup-card-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.mockup-card-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mockup-card-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.mockup-card-change {
    font-size: 11px;
    opacity: 0.85;
    font-weight: 500;
}

/* Chart Section */
.mockup-chart-section {
    text-align: center;
}

.mockup-chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.mockup-donut-chart {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(#10b981 0% 63%,
            #ef4444 63% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-center {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-value {
    font-size: 24px;
    font-weight: 800;
    color: #0097b2;
}

.donut-label {
    font-size: 11px;
    color: #666;
}

.mockup-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #333;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.green {
    background: #10b981;
}

.legend-dot.red {
    background: #ef4444;
}

/* Alerts Section */
.mockup-alerts-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 15px;
}

.mockup-alert-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.mockup-alert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid;
}

.mockup-alert-item.red {
    border-left-color: #ef4444;
}

.mockup-alert-item.yellow {
    border-left-color: #f59e0b;
}

.mockup-alert-item.green {
    border-left-color: #10b981;
}

.alert-icon {
    font-size: 16px;
}

.alert-content {
    flex: 1;
}

.alert-text {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.alert-value {
    font-size: 14px;
    font-weight: 700;
}

.mockup-alert-item.red .alert-value {
    color: #ef4444;
}

.mockup-alert-item.yellow .alert-value {
    color: #f59e0b;
}

.mockup-alert-item.green .alert-value {
    color: #10b981;
}

/* Metrics Grid */
.mockup-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-metric-card {
    background: #f9fafb;
    padding: 15px;
    border-radius: 10px;
}

.metric-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.metric-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: #0097b2;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.metric-bar-fill.red {
    background: #ef4444;
}

/* Line Chart */
.mockup-chart-line-container {
    background: #f9fafb;
    border-radius: 12px;
    padding: 15px;
}

.mockup-line-chart {
    width: 100%;
    height: 100px;
    margin-top: 10px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Data Analysis Section */
.data-analysis-section {
    padding: 100px 0;
    background: var(--white);
}

.data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}


.dashboard-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.grid-item-large {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.grid-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.grid-label {
    font-size: 12px;
    color: var(--text-light);
}

.chart-line-large {
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.chart-line-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slide 2s infinite;
}

.data-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.data-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.data-features {
    list-style: none;
}

.data-features li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.data-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.data-cta {
    margin-top: 30px;
}

/* Subscription Section */
.subscription-section {
    padding: 100px 0;
    background: var(--white);
}

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

.subscription-header .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.plan-card.plan-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

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

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-blue);
}

.plan-card-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.plan-description {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.plan-features li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.btn-plan {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-plan-featured {
    background: var(--primary-dark);
    font-size: 17px;
    padding: 17px 30px;
}

.plans-footer {
    text-align: center;
    margin-top: 40px;
}

.plans-guarantee {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background: var(--white);
}

.guarantee-content {
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.guarantee-item {
    padding: 30px;
    background: var(--light-blue);
    border-radius: 15px;
    transition: var(--transition);
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.guarantee-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--gradient-section);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-section);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.contact-stats {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    width: 100%;
}

.form-group select {
    background: var(--white);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: var(--light-blue);
    border-radius: 10px;
}

.whatsapp-contact svg {
    width: 24px;
    height: 24px;
}

.whatsapp-contact span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* Animações */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@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);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Melhorias de Acessibilidade */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias de Performance */
.device,
.dashboard-mockup,
.chart-bar {
    will-change: transform;
}

/* Efeitos de Loading */
.loading {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-container,
    .section-content,
    .approach-content,
    .data-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-grid,
    .testimonials-grid,
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .section-title-large {
        font-size: 36px;
    }

    .approach-text h3 {
        font-size: 28px;
    }

    .data-text h2 {
        font-size: 28px;
    }

    .dashboard-mockup-container {
        max-width: 100%;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.plan-featured {
        grid-column: 1 / -1;
    }

    .mockup-cards-row {
        grid-template-columns: 1fr;
    }

    .mockup-metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-list {
        font-size: 14px;
    }

    .section-title,
    .section-title-large {
        font-size: 28px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-content,
    .data-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-text h3 {
        font-size: 24px;
    }

    .approach-text p,
    .data-text p {
        font-size: 16px;
    }

    .data-text h2 {
        font-size: 24px;
    }

    .solutions-grid,
    .testimonials-grid,
    .faq-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card.plan-featured {
        grid-column: 1;
        transform: scale(1);
    }

    .plan-card.plan-featured:hover {
        transform: translateY(-10px);
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dashboard-showcase {
        margin-top: 30px;
    }

    .dashboard-container {
        max-width: 100%;
        border-radius: 15px;
    }

    .dashboard-image {
        border-radius: 15px;
    }

    .dashboard-mockup-container {
        max-width: 100%;
    }

    .mockup-cards-row {
        grid-template-columns: 1fr;
    }

    .mockup-metrics-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .urgency-banner {
        font-size: 12px;
        padding: 10px 0;
    }

    .urgency-banner p {
        font-size: 11px;
        line-height: 1.4;
    }

    .hero-guarantee {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 60px;
    }

    .section-2,
    .solutions-section,
    .approach-section,
    .data-analysis-section,
    .subscription-section,
    .testimonials-section,
    .guarantee-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title,
    .section-title-large {
        font-size: 22px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .approach-text h3 {
        font-size: 20px;
    }

    .data-text h2 {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .solution-card,
    .testimonial-card,
    .faq-item {
        padding: 25px 15px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guarantee-item {
        padding: 20px 15px;
    }

    .plans-grid {
        gap: 15px;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-card-header h3 {
        font-size: 22px;
    }

    .plan-card.plan-featured {
        transform: scale(1);
    }

    .plan-card.plan-featured:hover {
        transform: translateY(-10px);
    }

    .price-value {
        font-size: 32px;
    }

    .price-period {
        font-size: 14px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .mockup-title {
        font-size: 16px;
    }

    .mockup-subtitle {
        font-size: 12px;
    }

    .mockup-card-value {
        font-size: 22px;
    }

    .mockup-card-label {
        font-size: 11px;
    }

    .mockup-alert-item {
        padding: 10px;
    }

    .alert-text {
        font-size: 11px;
    }

    .alert-value {
        font-size: 12px;
    }

    .chat-bubble {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .chat-bubble svg {
        width: 24px;
        height: 24px;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-guarantee {
        font-size: 11px;
    }

    .plans-guarantee {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Melhorias para tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-title-large {
        font-size: 32px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.plan-featured {
        grid-column: 1;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid,
    .testimonials-grid,
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-mockup-container {
        max-width: 90%;
    }
}

/* Melhorias para telas grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title-large {
        font-size: 52px;
    }
}

/* Prevenção de scroll horizontal */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Melhorias de tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.8;
}

/* Melhorias de espaçamento */
section {
    position: relative;
}

/* Efeito de glassmorphism nos cards (opcional) */
.solution-card,
.testimonial-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Melhorias de contraste */
.testimonial-text {
    color: var(--text-dark);
    opacity: 0.9;
}

/* Animação suave para todos os elementos interativos */
a,
button {
    transition: var(--transition);
}

/* Melhorias de performance com GPU acceleration */
.device,
.solution-card,
.testimonial-card,
.btn-primary,
.btn-submit {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}