/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: #00bf63;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00a854;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== GLASSMORPHISM UTILITY ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #060e1a 0%, #0a1628 50%, #060e1a 100%);
    color: #ccc;
    font-size: 13px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 191, 99, 0.25);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00bf63, transparent);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-bar-phone:hover {
    color: #00e676;
    transform: scale(1.05);
}

.top-bar-phone strong {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.top-bar-left i {
    color: #00bf63;
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: #ccc;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-right a:hover {
    color: #fff;
    background: #00bf63;
    transform: scale(1.15);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(6, 14, 26, 0.92) 0%, rgba(10, 22, 40, 0.88) 40%, rgba(6, 14, 26, 0.95) 100%),
                url('https://mgx-backend-cdn.metadl.com/generate/images/1074174/2026-03-30/0ac25e66-83ba-4eb5-a543-57f997f43d5e.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 191, 99, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 191, 99, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 100, 200, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.hero-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-logo-link:hover {
    transform: scale(1.03);
}

.hero-logo-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 191, 99, 0.2));
    margin-bottom: 24px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Hero Headline */
.hero-headline {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.highlight-text {
    background: linear-gradient(135deg, #00bf63, #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-subtext strong {
    color: #00bf63;
}

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00bf63, #00e676);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 99, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 191, 99, 0.5);
    color: #fff;
}

.hero-cta-btn i {
    font-size: 24px;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.hero-cta-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    font-size: 14px;
}

.hero-phone-number {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.badge:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 191, 99, 0.5);
    box-shadow: 0 8px 30px rgba(0, 191, 99, 0.15);
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00bf63, #00e676);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.badge-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

/* ===== FORM CONTAINER ===== */
.form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00bf63, #00e676, #00bf63);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-container:hover::before {
    opacity: 0.6;
}

.form-header {
    background: linear-gradient(135deg, #00bf63 0%, #00a854 50%, #009648 100%);
    padding: 28px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-30%) translateY(-30%); }
    50% { transform: translateX(30%) translateY(30%); }
}

.form-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: #fff;
    position: relative;
}

.form-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
}

.form-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

#contactForm {
    padding: 28px 30px 30px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.required {
    color: #e74c3c;
    margin-left: 2px;
}

.field-hint {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 5px;
    margin-top: 0;
}

.field-conditions {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
    background: linear-gradient(135deg, #f0faf5, #e8f8ef);
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 3px solid #00bf63;
}

.field-conditions p {
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-conditions i {
    color: #00bf63;
    font-size: 11px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bf63;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

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

/* Phone Input */
.phone-input-container {
    display: flex;
    gap: 8px;
}

.country-select {
    width: 110px !important;
    flex-shrink: 0;
    font-size: 13px !important;
    padding: 11px 8px !important;
}

.phone-input-container input[type="tel"] {
    flex: 1;
}

/* Checkboxes */
.checkbox-group {
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400 !important;
    font-size: 13px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #00bf63;
    cursor: pointer;
}

.checkbox-label a {
    color: #00bf63;
    text-decoration: underline;
    font-weight: 500;
}

.consent-text {
    margin-top: 4px;
    margin-bottom: 16px;
}

.consent-text p {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #00bf63 0%, #00a854 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 191, 99, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

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

.submit-btn:hover {
    background: linear-gradient(135deg, #00a854 0%, #009648 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 191, 99, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-secure {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-secure i {
    color: #00bf63;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #00bf63 0%, #00a854 50%, #009648 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #fff;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 90px 20px;
    background: #ffffff;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #00bf63;
    box-shadow: 0 15px 40px rgba(0, 191, 99, 0.15);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00bf63, #00e676);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 191, 99, 0.3);
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1), rgba(0, 191, 99, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 16px;
    font-size: 26px;
    color: #00bf63;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrap {
    background: linear-gradient(135deg, #00bf63, #00e676);
    color: #fff;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.step-connector {
    color: #00bf63;
    font-size: 20px;
    padding: 0 8px;
    opacity: 0.5;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.12), rgba(0, 191, 99, 0.05));
    color: #00a854;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 25px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 191, 99, 0.15);
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00bf63, #00e676);
    border-radius: 2px;
    margin: 0 auto;
}

/* ===== REQUISITOS SECTION ===== */
.requisitos-section {
    padding: 90px 20px;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
}

.requisitos-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.requisitos-col {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.requisitos-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.requisitos-si:hover {
    border-color: rgba(0, 191, 99, 0.3);
}

.requisitos-no:hover {
    border-color: rgba(231, 76, 60, 0.3);
}

.requisitos-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
}

.requisitos-si .requisitos-col-header i {
    color: #00bf63;
    font-size: 26px;
}

.requisitos-si .requisitos-col-header h3 {
    color: #00bf63;
    font-size: 20px;
    font-weight: 700;
}

.requisitos-no .requisitos-col-header i {
    color: #e74c3c;
    font-size: 26px;
}

.requisitos-no .requisitos-col-header h3 {
    color: #e74c3c;
    font-size: 20px;
    font-weight: 700;
}

.requisitos-col ul {
    list-style: none;
    padding: 0;
}

.requisitos-col ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.requisitos-si ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bf63;
    font-weight: 700;
    font-size: 16px;
}

.requisitos-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.sub-item {
    padding-left: 10px;
    color: #666;
}

.requisitos-logos {
    margin-top: 50px;
    text-align: center;
}

.logos-title {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.requisitos-logos img {
    max-width: 420px;
    width: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.requisitos-logos img:hover {
    opacity: 1;
}

.logos-desktop {
    display: inline-block;
}

.logos-mobile {
    display: none;
}

/* ===== FEATURE SECTIONS ===== */
.feature-section {
    padding: 90px 20px;
}

.feature-green {
    background: linear-gradient(180deg, #f0faf5 0%, #e8f8ef 100%);
}

.feature-white {
    background: #ffffff;
}

.feature-container {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 380px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-image img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-content {
    flex: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.12), rgba(0, 191, 99, 0.05));
    color: #00a854;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 25px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 191, 99, 0.15);
}

.feature-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.feature-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, #00bf63, #00a854);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.25);
}

.feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 99, 0.35);
    color: #fff;
    gap: 12px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card::before {
    content: '';
}

.benefit-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1), rgba(0, 191, 99, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: #00bf63;
    transition: all 0.3s ease;
}

.testimonial-card:hover .benefit-icon-wrap {
    background: linear-gradient(135deg, #00bf63, #00e676);
    color: #fff;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 191, 99, 0.12);
    border-color: rgba(0, 191, 99, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: normal;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00bf63;
    box-shadow: 0 2px 10px rgba(0, 191, 99, 0.2);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 12px;
    color: #999;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(6, 14, 26, 0.95) 0%, rgba(10, 22, 40, 0.95) 100%),
                url('https://mgx-backend-cdn.metadl.com/generate/images/1074174/2026-03-30/3cec8ae8-30ef-48f9-b669-5fbd4515061e.png');
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 191, 99, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(0, 191, 99, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.5); transform: scale(1.05); }
}

.cta-container h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.cta-button i {
    font-size: 22px;
}

/* Big CTA Phone */
.cta-phone-big {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #00bf63, #00e676);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 191, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-phone-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.cta-phone-big:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 45px rgba(0, 191, 99, 0.55);
    color: #fff;
}

.cta-phone-big i {
    font-size: 32px;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.cta-phone-number {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.1;
}

.cta-buttons-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cta-phone-btn {
    background: linear-gradient(135deg, #00bf63, #00e676) !important;
    box-shadow: 0 6px 25px rgba(0, 191, 99, 0.35) !important;
}

.cta-phone-btn:hover {
    box-shadow: 0 10px 40px rgba(0, 191, 99, 0.5) !important;
}

.cta-phone-btn i {
    animation: phoneRing 1.5s ease-in-out infinite;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust i {
    color: #00bf63;
    font-size: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #060e1a 0%, #0a1628 100%);
    color: #ffffff;
    padding: 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 70px 20px 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 10px rgba(0, 191, 99, 0.2));
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00bf63;
    border-color: #00bf63;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

.footer-links-col {
    flex: 1;
    min-width: 180px;
}

.footer-links-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00bf63, #00e676);
    border-radius: 1px;
}

.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links-col a:hover {
    color: #00bf63;
    padding-left: 6px;
}

.footer-links-col a i {
    color: #00bf63;
    font-size: 12px;
    width: 14px;
}

.footer-phone-link {
    font-size: 16px !important;
    color: #00bf63 !important;
}

.footer-phone-link strong {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-disclaimer p {
    font-size: 11px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer-disclaimer a {
    color: #00bf63;
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 4px;
}

/* ===== PHONE FLOAT ===== */
.phone-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bf63, #00a854);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 6px 25px rgba(0, 191, 99, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappBounce 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.phone-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(0, 191, 99, 0.55);
    color: #fff;
    animation: none;
}

.phone-float i {
    animation: phoneRing 1.5s ease-in-out infinite;
}

.phone-float-tooltip {
    position: absolute;
    right: 70px;
    background: #00bf63;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.phone-float:hover .phone-float-tooltip {
    opacity: 1;
}

.phone-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #00bf63;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappBounce 2s ease-in-out infinite;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

/* ===== FORM VALIDATION STYLES ===== */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    background: #fff5f5;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    background: linear-gradient(135deg, #00bf63, #00a854);
    color: #fff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    animation: slideDown 0.4s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FORM ERROR MESSAGE ===== */
.form-error-message {
    display: none;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    animation: slideDown 0.4s ease;
}

.form-error-message.show {
    display: block;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-ready {
    opacity: 0;
    transform: translateY(40px);
}

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

/* Particle */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 191, 99, 0.3);
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Pulse animation */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.55); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-headline {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtext {
        text-align: center;
    }

    .form-container {
        max-width: 100%;
    }

    .trust-badges {
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .step-card {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        margin: 0 auto;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-section {
        padding: 30px 15px 50px;
        background-attachment: scroll;
    }

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

    .hero-logo-img {
        max-width: 280px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .stats-container {
        gap: 10px;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .requisitos-container {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .feature-container,
    .feature-reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-content h2 {
        font-size: 24px;
    }

    .feature-image img {
        max-width: 280px;
    }

    .cta-container h2 {
        font-size: 28px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }

    .cta-phone-big {
        flex-direction: column;
        text-align: center;
        padding: 16px 28px;
    }

    .cta-phone-number {
        font-size: 28px;
    }

    .hero-phone-number {
        font-size: 20px;
    }

    .hero-cta-btn {
        font-size: 16px;
        padding: 14px 24px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }

    .logos-desktop {
        display: none;
    }

    .logos-mobile {
        display: inline-block;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 30px;
    }

    .country-select {
        width: 100px !important;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 220px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 280px;
    }

    .form-header h2 {
        font-size: 18px;
    }

    #contactForm {
        padding: 20px 18px 24px;
    }

    .requisitos-section {
        padding: 50px 15px;
    }

    .feature-section {
        padding: 50px 15px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    .stat-item {
        padding: 8px 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/* Compliance / Google Ads transparency */
.compliance-box {
    max-width: 900px;
    margin: 36px auto 0;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    text-align: center;
}
.compliance-box p:last-child {
    margin: 10px auto 0;
    max-width: 760px;
    line-height: 1.7;
    color: #334155;
}
