/* ========================================
   Global Styles & Variables
   ======================================== */

:root {
    /* Colors */
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --secondary: #3b82f6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #059669 0%, #16a34a 50%, #22c55e 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(22, 163, 74, 0.85) 100%);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

/* Prevenir overflow horizontal em todos os elementos */
*,
*::before,
*::after {
    max-width: 100%;
}

/* Elementos de texto devem quebrar adequadamente */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Screen Reader Only - Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo i {
    color: var(--primary);
    font-size: 28px;
}

.logo strong {
    color: var(--primary);
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Esconder botões mobile no desktop */
.mobile-only {
    display: none !important;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login:hover {
    background: var(--gray-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

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

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    max-width: 95%;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #4ade80 0%, #a3e635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trial {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 95%;
    text-align: center;
}

.hero-trial i {
    font-size: 18px;
    color: var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    will-change: transform, box-shadow;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    will-change: transform;
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Section Headers
   ======================================== */

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
    animation: shine 3s infinite;
}

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

    50%,
    100% {
        left: 100%;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-light);
    will-change: transform, box-shadow;
    contain: layout style paint;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    animation: icon-glow 2s infinite;
}

@keyframes icon-glow {

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

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card>p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark);
    font-size: 14px;
}

.feature-list i {
    color: var(--primary);
    font-size: 16px;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: 60px 0 40px;
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

.step:last-child::after {
    display: none;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.step:hover .step-content {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary);
}

.steps-compact .step-icon {
    display: none;
}

.steps-compact .step-content h3 i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.benefits-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 15px;
}

.benefits-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--white);
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.7;
}

.benefits-visual {
    position: relative;
}

.visual-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 20px;
}

.visual-header i {
    font-size: 28px;
    color: var(--primary);
}

.visual-header span {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
}

.visual-body {
    margin-bottom: 20px;
    position: relative;
}

.earth-globe {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, #0a1628 0%, #020617 100%);
}

#world-3d-canvas {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: grab;
    display: block !important;
    opacity: 1 !important;
}

#world-3d-canvas:active {
    cursor: grabbing;
}

.globe-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(74, 222, 128, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.globe-loading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.globe-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

.globe-info i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.globe-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.canvas-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.canvas-controls p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.canvas-controls i {
    color: var(--primary-light);
    font-size: 14px;
}

.chart-placeholder {
    height: 250px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.chart-placeholder i {
    font-size: 60px;
    color: var(--primary);
}

.chart-placeholder p {
    font-weight: 600;
    color: var(--dark);
}

.visual-stats {
    display: flex;
    gap: 15px;
}

.visual-stat {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    min-width: fit-content;
}

.visual-stat.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.visual-stat.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

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

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 10px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--gray);
    margin-top: 25px;
}

.pricing-header p {
    color: var(--gray);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark);
    font-size: 15px;
}

.pricing-features li i {
    font-size: 18px;
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--gray);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
}

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

.pricing-card:not(.featured) .btn-pricing {
    background: var(--dark);
}

.pricing-discount {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-example {
    margin: 20px 0;
    padding: 15px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 10px;
    text-align: center;
}

.pricing-example p {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 5px;
}

.pricing-example strong {
    color: var(--primary);
    font-size: 18px;
}

.pricing-example small {
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
}

.pricing-extra {
    max-width: 900px;
    margin: 50px auto 30px;
}

.pricing-extra-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
}

.extra-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-icon i {
    font-size: 48px;
    color: var(--white);
}

.extra-content h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.extra-content>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.extra-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.extra-price span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.extra-price strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    font-family: var(--font-heading);
}

.discount-badge {
    padding: 5px 12px;
    background: var(--danger);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.extra-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-extra {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
}

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

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
}

.pricing-note i {
    color: var(--primary);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: var(--white);
}

.author-info h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 3s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-item h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-item p a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item p a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: gradient-shift 15s ease infinite;
}

.contact-form:hover::before {
    opacity: 0.1;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Labels */
.floating-label {
    position: relative;
    margin-bottom: 30px;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    width: 100%;
    padding: 20px 15px 10px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
}

.floating-label label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.floating-label textarea+label {
    top: 30px;
}

.floating-label input:focus,
.floating-label select:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.floating-label input:focus+label,
.floating-label input:not(:placeholder-shown)+label,
.floating-label select:focus+label,
.floating-label select:not([value=""]):valid+label,
.floating-label textarea:focus+label,
.floating-label textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.floating-label .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label input:focus~.focus-border,
.floating-label select:focus~.focus-border,
.floating-label textarea:focus~.focus-border {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

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

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 15px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo strong {
    color: var(--primary);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    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);
}

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

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom i {
    color: var(--danger);
}

/* ========================================
   Scroll to Top Button
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        padding: 30px 20px 40px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease-in-out;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 1001;
    }

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

    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text);
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary);
    }

    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 20px;
        right: 20px;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link.active::after {
        transform: scaleX(1);
    }

    /* Botões mobile */
    .mobile-only {
        display: block !important;
        margin-top: 10px;
    }

    .btn-login-mobile,
    .btn-cta-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .btn-login-mobile {
        background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }

    .btn-login-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    }

    .btn-cta-mobile {
        background: var(--white);
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-cta-mobile:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn-login-mobile i,
    .btn-cta-mobile i {
        font-size: 18px;
    }

    /* Esconder botões no desktop */
    .mobile-only {
        display: block !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn-login,
    .btn-primary {
        padding: 8px 15px;
        font-size: 14px;
    }

    .btn-login i {
        font-size: 12px;
    }

    .logo span {
        font-size: 20px;
    }

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

    .hero-stats {
        gap: 40px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 900px) {
    .nav-buttons {
        display: none;
    }
}

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

    .hero-content {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 36px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

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

    .step::after {
        display: none;
    }

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

    .pricing-card {
        padding: 30px 20px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-extra-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .extra-icon {
        margin: 0 auto;
    }

    /* Benefits Section - Mobile Responsiveness */
    .benefits-content {
        gap: 50px;
    }

    .benefits-text h2 {
        font-size: 32px;
    }

    .benefits-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .benefit-item {
        margin-bottom: 25px;
        gap: 15px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-item h4 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .visual-card {
        padding: 25px;
    }

    .visual-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .visual-header i {
        font-size: 24px;
    }

    .visual-header span {
        font-size: 16px;
    }

    .chart-placeholder {
        height: 200px;
    }

    .chart-placeholder i {
        font-size: 48px;
    }

    .visual-stats {
        flex-direction: column;
        gap: 10px;
    }

    .visual-stat {
        width: 100%;
        justify-content: center;
        padding: 15px 12px;
        font-size: 13px;
    }

    .visual-stat i {
        font-size: 16px;
    }

    .visual-stat span {
        white-space: normal;
        text-align: center;
    }
}

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

    .hero-content {
        padding: 40px 10px;
    }

    .hero-badge {
        padding: 8px 15px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-trial {
        padding: 12px 20px;
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

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

    .stat-number {
        font-size: 36px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Benefits Section - Small Mobile */
    .benefits {
        padding: 60px 0;
    }

    .benefits-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .benefits-intro {
        font-size: 15px;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 22px;
    }

    .benefit-item h4 {
        font-size: 17px;
        margin-top: 10px;
    }

    .benefit-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .visual-card {
        padding: 20px;
        border-radius: 16px;
    }

    .chart-placeholder {
        height: 180px;
    }

    .chart-placeholder i {
        font-size: 40px;
    }

    .chart-placeholder p {
        font-size: 14px;
    }

    .visual-stat {
        font-size: 12px;
        padding: 10px 8px;
        gap: 8px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .visual-stat i {
        font-size: 14px;
        flex-shrink: 0;
    }

    .visual-stat span {
        line-height: 1.3;
    }
}

/* Media Query para Celulares Altos (ex: iPhone 14 Pro Max, Samsung Galaxy S23 Ultra) */
@media (max-width: 768px) and (min-height: 800px) {
    .benefits {
        padding: 80px 0;
    }

    .benefits-content {
        gap: 60px;
    }

    .benefit-item {
        margin-bottom: 35px;
        padding: 15px;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid var(--gray-light);
        transition: var(--transition);
    }

    .benefit-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-item h4 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .benefit-item p {
        font-size: 15px;
        line-height: 1.7;
    }

    .visual-card {
        padding: 30px;
    }

    .chart-placeholder {
        height: 280px;
    }

    .chart-placeholder i {
        font-size: 64px;
    }

    .chart-placeholder p {
        font-size: 16px;
    }

    .visual-stats {
        flex-direction: row;
        gap: 12px;
    }

    .visual-stat {
        padding: 18px 15px;
        font-size: 14px;
    }
}