/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(229, 62, 62, 0.3));
}

.logo-image:hover {
    filter: drop-shadow(0 4px 15px rgba(229, 62, 62, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #146cad;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #e53e3e;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-login:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-register:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3; 
    }
    50% { 
        opacity: 0.7; 
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #111;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.platform-card:hover::before {
    transform: translateX(100%);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.platform-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.platform-card.instagram.active { 
    background: #e4405f; 
    color: white; 
}

.platform-card.tiktok.active { 
    background: #000000; 
    color: white; 
}

.platform-card.youtube.active { 
    background: #ff0000; 
    color: white; 
}

.platform-card.facebook.active { 
    background: #1877f2; 
    color: white; 
}

.platform-card.twitch.active { 
    background: #9146ff; 
    color: white; 
}

.platform-card.telegram.active { 
    background: #0088cc; 
    color: white; 
}

.platform-card.spotify.active { 
    background: #1db954; 
    color: white; 
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* Pricing Section */
.pricing-section {
    margin-top: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.pricing-section.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    border-color: #e53e3e;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 0.5rem;
}

.pricing-service {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.order-btn {
    background: linear-gradient(135deg, #3e42e5 0%, #308ec5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

/* Custom Order Card */
.custom-order {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e53e3e;
    text-align: center;
    width: 100%;
    margin: 0;
}

.custom-order h3 {
    color: #e53e3e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.custom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.result-label {
    color: #aaa;
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #333;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e53e3e;
    transform: scale(1.1);
}

.quantity-input {
    background: #333;
    color: white;
    border: 1px solid #555;
    padding: 0.8rem;
    border-radius: 6px;
    width: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-input:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
}

.custom-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(229, 62, 62, 0.5);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: #aaa;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.5);
}

.feature-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #e53e3e;
    transform: translateY(-2px);
}

/* Animações personalizadas */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.platform-card {
    animation: slideInLeft 0.5s ease-out;
}

.platform-card:nth-child(even) {
    animation: slideInRight 0.5s ease-out;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px #146cad21);
}

.logo-image:hover {
    filter: drop-shadow(0 4px 15px #1671b463);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #0dccff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #73bdef;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-login:hover {
    background: #0d5991;
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: #0d5991;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-register:hover {
    background: #00000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(13 89 145 / 19%);
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3; 
    }
    50% { 
        opacity: 0.7; 
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background: #010d1c;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-titlee {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.platform-card:hover::before {
    transform: translateX(100%);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.platform-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.platform-card.instagram.active { 
    background: linear-gradient(206.3deg, #5B00C4 11.66%, #D00049 123.55%); 
    color: white; 
}

.platform-card.tiktok.active { 
    background: #161722; 
    color: white; 
}

.platform-card.youtube.active { 
    background: #db182c; 
    color: white; 
}

.platform-card.facebook.active { 
    background: #395693; 
    color: white; 
}

.platform-card.twitch.active { 
    background: #5c16c5; 
    color: white; 
}

.platform-card.telegram.active { 
    background: #239fdb; 
    color: white; 
}

.platform-card.spotify.active { 
    background: #1ed760; 
    color: white; 
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* NOVAS ANIMAÇÕES ELEGANTES E SUAVES */

/* Animações para entrada dos pricing cards */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUpFade {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Pricing Section */
.pricing-section {
    margin-top: 3rem;
    display: none;
}

.pricing-section.active {
    display: block;
    animation: fadeInSmooth 0.4s ease-out;
}

@keyframes fadeInSmooth {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Pricing cards com animação suave */
.pricing-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
}

/* Animação staggered para os cards */
.pricing-card.show {
    animation: slideUpFade 0.6s ease-out forwards;
}

.pricing-card.show:nth-child(1) { animation-delay: 0.05s; }
.pricing-card.show:nth-child(2) { animation-delay: 0.1s; }
.pricing-card.show:nth-child(3) { animation-delay: 0.15s; }
.pricing-card.show:nth-child(4) { animation-delay: 0.2s; }

/* Hover com micro-interação */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    COLOR: BLUE;
    background: linear-gradient(135deg, #6bdbf71f 0%, #6bdbf721 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: #6bdbf7;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px #6bdbf757;
}

/* Elementos internos com micro-animações */
.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #146cad;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

/* Print styles */
@media print {
    .header,
    .nav-menu,
    .hamburger {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .header {
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 2px solid #fff;
    }
    
    .platform-card {
        border: 2px solid #fff;
    }
    
    .pricing-card {
        border: 2px solid #e53e3e;
    }
}

/* Loading skeleton animations */
.skeleton {
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c53030;
}

/* Selection styles */
::selection {
    background: rgba(229, 62, 62, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(229, 62, 62, 0.3);
    color: #fff;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Button variations */
.btn-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: #e53e3e;
    border: 1px solid #e53e3e;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Card variations */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-bordered {
    border: 2px solid #e53e3e;
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grid system */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

/* Spacing utilities */
.m-0 { margin: 0; }
.m-1 { margin: 0.5rem; }
.m-2 { margin: 1rem; }
.m-3 { margin: 1.5rem; }
.m-4 { margin: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Text utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Color utilities */
.text-primary { color: #e53e3e; }
.text-secondary { color: #aaa; }
.text-white { color: #fff; }
.text-black { color: #000; }

.bg-primary { background: #e53e3e; }
.bg-secondary { background: #333; }
.bg-dark { background: #1a1a1a; }
.bg-light { background: #f5f5f5; }

/* Border utilities */
.border { border: 1px solid #333; }
.border-primary { border: 1px solid #e53e3e; }
.border-secondary { border: 1px solid #aaa; }

.rounded { border-radius: 6px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

/* Shadow utilities */
.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1); }

/* Additional animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes rubber {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.animate-bounce { animation: bounce 1s infinite; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-rubber { animation: rubber 1s ease-in-out; }

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
}

.form-textarea {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.form-select {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-checkbox {
    margin-right: 0.5rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e53e3e;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.notification.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.notification.warning {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

/* Progress bar */
.progress {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-primary {
    background: #e53e3e;
    color: #fff;
}

.badge-secondary {
    background: #333;
    color: #fff;
}

.badge-success {
    background: #28a745;
    color: #fff;
}

.badge-warning {
    background: #ffc107;
    color: #000;
}

.badge-danger {
    background: #dc3545;
    color: #fff;
}

/* Responsive utilities */
@media (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; }
    .col-lg-12 { flex: 0 0 100%; }
}

@media (max-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; }
    .col-md-3 { flex: 0 0 25%; }
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-6 { flex: 0 0 50%; }
    .col-md-12 { flex: 0 0 100%; }
    
    .hidden-md {
        display: none;
    }
}

@media (max-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; }
    .col-sm-6 { flex: 0 0 50%; }
    .col-sm-12 { flex: 0 0 100%; }
    
    .hidden-sm {
        display: none;
    }
}

/* Custom Order Card com animação diferente */
.custom-order {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #6bdbf7;
    text-align: center;
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    transition: all 0.4s ease;
}

.custom-order.show {
    animation: scaleUpFade 0.7s ease-out forwards;
    animation-delay: 0.3s;
}

.custom-order h3 {
    color: #146cad;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.custom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.result-label {
    color: #aaa;
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #333;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e53e3e;
    transform: scale(1.1);
}

.quantity-input {
    background: #333;
    color: white;
    border: 1px solid #555;
    padding: 0.8rem;
    border-radius: 6px;
    width: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-input:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
}

.custom-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(229, 62, 62, 0.5);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: #aaa;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.5);
}

.feature-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #e53e3e;
    transform: translateY(-2px);
}

/* Animações personalizadas */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.platform-card {
    animation: slideInLeft 0.5s ease-out;
}

.platform-card:nth-child(even) {
    animation: slideInRight 0.5s ease-out;
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus states para acessibilidade */
.platform-card:focus,
.order-btn:focus,
.quantity-btn:focus,
.quantity-input:focus {
    outline: 2px solid #e53e3e;
    outline-offset: 2px;
}

/* Estados de hover melhorados */
@media (hover: hover) {
    .platform-card:hover {
        box-shadow: 0 15px 35px rgba(229, 62, 62, 0.2);
    }
    
    .pricing-card:hover {
        box-shadow: 0 25px 50px rgba(229, 62, 62, 0.15);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 85px;
    }

    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }

    .services-container,
    .footer-content {
        padding: 0 1rem;
    }

    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-card {
        padding: 1rem 0.5rem;
    }

    .platform-icon {
        font-size: 1.8rem;
    }

    .platform-name {
        font-size: 0.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .custom-order {
        margin: 0 0rem;
        padding: 1.5rem;
    }

    .custom-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .platform-card {
        padding: 0.8rem 0.3rem;
        border-radius: 6px;
    }

    .platform-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .platform-name {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .custom-order {
        padding: 1.5rem;
        margin: 0 0;
    }

    .quantity-input {
        width: 80px;
        padding: 0.6rem;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .logo-image {
        height: 85px;
    }
}

@media (max-width: 360px) {
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .platform-card {
        padding: 0.6rem 0.2rem;
        min-height: 80px;
    }

    .platform-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .platform-name {
        font-size: 0.7rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .services-container {
        padding: 0 0.5rem;
    }

    .custom-order {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .logo-image {
        height: 60px;
    }
}

/* Otimizações para performance */
.platform-card,
.pricing-card,
.feature-item {
    will-change: transform;
}


.pricing-card:hover .pricing-amount {
    transform: scale(1.05);
}

.pricing-service {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.order-btn {
    background: linear-gradient(135deg, #0024e1 0%, #081bff82 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    font-size: 1rem;
    transform: translateY(0);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #125e719c;
}

.order-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus states para acessibilidade */
.platform-card:focus,
.order-btn:focus,
.quantity-btn:focus,
.quantity-input:focus {
    outline: 2px solid #6bdbf7;
    outline-offset: 2px;
}

/* Estados de hover melhorados */
@media (hover: hover) {
    .platform-card:hover {
        box-shadow: 0 15px 35px rgba(229, 62, 62, 0.2);
    }
    
    .pricing-card:hover {
        box-shadow: 0 25px 50px rgba(229, 62, 62, 0.15);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 92px;
    }

    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }

    .services-container,
    .footer-content {
        padding: 0 1rem;
    }

    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-card {
        padding: 1rem 0.5rem;
    }

    .platform-icon {
        font-size: 1.8rem;
    }

    .platform-name {
        font-size: 0.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .custom-order {
        margin: 0 0rem;
        padding: 1.5rem;
    }

    .custom-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .platform-card {
        padding: 0.8rem 0.3rem;
        border-radius: 6px;
    }

    .platform-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .platform-name {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .custom-order {
        padding: 1.5rem;
        margin: 0 0rem;
    }

    .quantity-input {
        width: 80px;
        padding: 0.6rem;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .logo-image {
        height: 86px;
    }
}

@media (max-width: 360px) {
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .platform-card {
        padding: 0.6rem 0.2rem;
        min-height: 80px;
    }

    .platform-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .platform-name {
        font-size: 0.7rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .services-container {
        padding: 0 0.5rem;
    }

    .custom-order {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .logo-image {
        height: 85px;
    }
}

/* Otimizações para performance */
.platform-card,
.pricing-card,
.feature-item {
    will-change: transform;
}

/* Print styles */
@media print {
    .header,
    .nav-menu,
    .hamburger {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .header {
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 2px solid #fff;
    }
    
    .platform-card {
        border: 2px solid #fff;
    }
    
    .pricing-card {
        border: 2px solid #e53e3e;
    }
}

/* Loading skeleton animations */
.skeleton {
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c53030;
}

/* Selection styles */
::selection {
    background: #6bdbf73b;
    color: #fff;
}

::-moz-selection {
    background: rgba(229, 62, 62, 0.3);
    color: #fff;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Button variations */
.btn-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: #e53e3e;
    border: 1px solid #e53e3e;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Card variations */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-bordered {
    border: 2px solid #e53e3e;
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grid system */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

/* Spacing utilities */
.m-0 { margin: 0; }
.m-1 { margin: 0.5rem; }
.m-2 { margin: 1rem; }
.m-3 { margin: 1.5rem; }
.m-4 { margin: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Text utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Color utilities */
.text-primary { color: #e53e3e; }
.text-secondary { color: #aaa; }
.text-white { color: #fff; }
.text-black { color: #000; }

.bg-primary { background: #e53e3e; }
.bg-secondary { background: #333; }
.bg-dark { background: #1a1a1a; }
.bg-light { background: #f5f5f5; }

/* Border utilities */
.border { border: 1px solid #333; }
.border-primary { border: 1px solid #e53e3e; }
.border-secondary { border: 1px solid #aaa; }

.rounded { border-radius: 6px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

/* Shadow utilities */
.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1); }

/* Additional animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes rubber {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.animate-bounce { animation: bounce 1s infinite; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-rubber { animation: rubber 1s ease-in-out; }

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
}

.form-textarea {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.form-select {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-checkbox {
    margin-right: 0.5rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e53e3e;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.notification.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.notification.warning {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

/* Progress bar */
.progress {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-primary {
    background: #e53e3e;
    color: #fff;
}

.badge-secondary {
    background: #333;
    color: #fff;
}

.badge-success {
    background: #28a745;
    color: #fff;
}

.badge-warning {
    background: #ffc107;
    color: #000;
}

.badge-danger {
    background: #dc3545;
    color: #fff;
}

/* Responsive utilities */
@media (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; }
    .col-lg-12 { flex: 0 0 100%; }
}

@media (max-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; }
    .col-md-3 { flex: 0 0 25%; }
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-6 { flex: 0 0 50%; }
    .col-md-12 { flex: 0 0 100%; }
    
    .hidden-md {
        display: none;
    }
}

@media (max-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; }
    .col-sm-6 { flex: 0 0 50%; }
    .col-sm-12 { flex: 0 0 100%; }
    
    .hidden-sm {
        display: none;
    }
}
.preview-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 1rem 2rem;
}

.preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgb(18 18 28) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.preview-container {
    max-width: 1000px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.preview-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-comparison {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.mockup-before,
.mockup-after {
    background: #1a1a1a;
    border-radius: 20px;
    padding: -8.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mockup-before:hover,
.mockup-after:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
}

.mockup-phone {
    width: 240px;
    height: 380px;
    background: #000;
    border-radius: 25px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    flex-direction: column;
    padding: 19px 11px;
    color: white;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mockup-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: url('/icons/mw111.png') center/cover, #e53e3e;
    background-color: #e53e3e;
}

.mockup-username {
    font-size: 16px;
    font-weight: 600;
}

.mockup-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 15px 0px;
    border-top: 1px solid rgba(255,255,255,0.2);
    gap: 0px;
}

.mockup-stat {
    text-align: center;
    flex: 1;
    /* min-width: 0px; */
}

.mockup-number {
    font-size: 16px;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: visible !important;
    text-overflow: initial !important;
    transition: all 0.3s ease;
    min-width: 38px;
}

.mockup-label {
    font-size: 42px;
    opacity: -5.2;
    margin-top: 5px;
}

.comparison-arrow {
    font-size: 3rem;
    color: #e53e3e;
    margin: 0 1rem;
    animation: pulse 2s infinite;
}

.result-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-top: 2rem;
    color: #e53e3e;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(229, 62, 62, 0.5);
}

.preview-cta {
    margin-top: 2rem;
}

.preview-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 62, 62, 0.4);
}

/* CORES ESPECÍFICAS PARA OS NÚMEROS DO MOCKUP */
.before-number {
    color: #dc3545 !important; /* Vermelho para 500 */
    font-weight: 800;
    text-shadow: 0 0 8px rgba(220, 53, 69, 0.6);
}

.after-number {
    color: #28a745 !important; /* Verde para 10.500 */
    font-weight: 800;
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

/* Cor amarela para texto adicional se necessário */
.yellow-text {
    color: #ffc107 !important; /* Amarelo */
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

/* Cores específicas para os números no texto resultado */
.result-text span {
    display: inline !important;
    font-weight: 800 !important;
}

.result-text span[style*="#dc3545"] {
    color: #dc3545 !important;
    text-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
}

.result-text span[style*="#28a745"] {
    color: #28a745 !important;  
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.6) !important;
}

/* Garantir que o texto base seja amarelo */
.result-text {
    color: #ffc107 !important;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5) !important;
    white-space: nowrap;
    overflow: visible;
}

/* Efeito de brilho quando os números mudam */
.mockup-number.changing {
    animation: colorGlow 0.5s ease-in-out;
}

@keyframes colorGlow {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1); 
        opacity: 1; 
    }
}

/* Melhorar a visibilidade dos números com fundos semi-transparentes */
.mockup-before .before-number {
    background: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    padding: 0px 0px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.mockup-after .after-number {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 34px;
    padding: 7px -7px;
    /* border: 1px solid rgba(40, 167, 69, 0.3); */
}

/* Responsive - ABORDAGEM NOVA E SIMPLES */
@media (max-width: 768px) {
    .preview-section {
        min-height: 90vh;
        padding: 80px 0.5rem 2rem;
    }
    
    .mockup-comparison {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        justify-content: center !important;
        align-items: flex-end !important; /* ALINHA PELA BASE */
        width: 100% !important;
    }
    
    .mockup-before,
    .mockup-after {
        padding: 1rem !important;
    }
    
    .comparison-arrow {
        font-size: 1.5rem !important;
        margin: 0 0.5rem !important;
        align-self: center !important;
    }
    
    .mockup-phone {
        width: 150px !important;
        height: 250px !important;
    }
}
    
    /* CONTEÚDO INTERNO SUPER SIMPLES */
    .mockup-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #833ab4, #fd1d1d, #fcb045);
        display: flex;
        flex-direction: column;
        padding: 11px 17px -1px 21px;
        color: white;
    }
    
    .mockup-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .mockup-avatar {
        width: 28px;
        height: 28px;
    }
    
    .mockup-username {
        font-size: 11px;
        font-weight: 600;
    }
    
    .mockup-stats {
        display: flex;
        justify-content: space-between;
        margin-top: auto;
        padding: 3px 0px 0px 0px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    .mockup-stat {
        text-align: center;
        flex: 1;
    }
    
    .mockup-number {
        font-size: 29px !important;
        font-weight: 28 !important;
        line-height: 1.2 !important;
        margin-bottom: 3px !important;
        display: block !important;
    }
    
    .mockup-label {
        font-size: 20px !important;
        opacity: 3.8 !important;
        line-height: 3 !important;
    }
    
    /* Ajustar cores em telas menores */
    .before-number,
    .after-number {
        text-shadow: 0 0 6px rgba(220, 53, 69, 0.5);
    }
    
    /* Evitar truncamento do texto em dispositivos móveis */
    .result-text {
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: clamp(0.9rem, 3.5vw, 1.3rem) !important;
        margin-top: 1.5rem;
    }


@media (max-width: 480px) {
    .mockup-comparison {
        gap: 0.8rem !important;
        padding: 0 0.5rem !important;
    }
    
    .mockup-phone {
        width: 110px !important;
        height: 180px !important;
    }
    
    .mockup-screen {
        padding: 12px 10px 10px 10px;
    }
    
    .mockup-header {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .mockup-stats {
        padding: -3px 2px 0 2px;
    }
    
    .mockup-avatar {
        width: 20px;
        height: 20px;
    }
    
    .mockup-username {
        font-size: 5px;
    }
    
    .mockup-number {
        font-size: 13px !important;
        margin-bottom: -4px !important;
    }
    
    .mockup-label {
        font-size: 7px !important;
    }
    
    .mockup-before,
    .mockup-after {
        padding: 0.8rem !important;
    }
    
    .comparison-arrow {
        font-size: 1.2rem !important;
        margin: 0 0.4rem !important;
    }
}

@media (max-width: 360px) {
    .mockup-phone {
        width: 100px !important;
        height: 160px !important;
    }
    
    .mockup-screen {
        padding: 10px 8px 8px 8px;
    }
    
    .mockup-header {
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .mockup-stats {
        padding: 8px 1px 0 1px;
    }
    
    .mockup-avatar {
        width: 18px;
        height: 18px;
    }
    
    .mockup-username {
        font-size: 8px;
    }
    
    .mockup-number {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }
    
    .mockup-label {
        font-size: 6px !important;
    }
    
    .mockup-before,
    .mockup-after {
        padding: 0.6rem !important;
    }
    
    .comparison-arrow {
        font-size: 1rem !important;
        margin: 0 0.3rem !important;
    }
    
    .mockup-comparison {
        gap: 0.6rem !important;
    }
}

.footer {
	padding: 100px 0 60px;
	background: #000;
	position: relative
}

.footer__wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between
}

.footer__left {
	padding-right: 40px
}

.footer__left .logotype {
	margin-top: -20px
}

.footer__left p {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
	color: #fff;
	margin-top: 34px
}

.footer__menu {
	display: flex;
	align-items: flex-start;
	padding: 0 40px;
	width: 42%
}

.footer__menu-column {
	width: 50%;
	padding: 0 10px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column
}

.footer__menu-column a {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	color: #777;
	margin: 10px 0
}

.footer__menu-column a:hover {
	color: #db182c
}

.footer__right {
	padding-left: 20px;
	width: 48%;
	padding-top: 10px
}

.footer__points {
	display: flex;
	justify-content: space-between
}

.footer__point {
	display: flex;
	margin-bottom: 26px;
	padding: 4px 43px;
	align-content: center;
	flex-wrap: wrap;
}

.footer__point--large {
	margin-top: -4px
}

.footer__point--large .footer__point-icon {
	width: 29px;
	min-width: 29px
}

.footer__point--large .footer__point-icon img {
	width: 29px
}

.footer__point--large .footer__point-info .white {
	font-size: 15px;
	margin-top: 5px
}

.footer__point--large .footer__point-info .large {
	font-size: 18px;
	font-weight: 500;
	margin-top: 0
}

.footer__point--large .footer__point-info .large span {
	color: #db182c
}

.footer__point-icon {
	width: 22px;
	height: auto;
	min-width: 22px;
	margin-right: 15px
}

.footer__point-icon img {
	width: 28px;
	height: auto
}

.footer__point-info .white {
	font-size: 16px;
	line-height: 1.3;
	color: #fff
}

.footer__point-info .red {
	font-size: 16px;
	color: #db182c;
	line-height: 1.3;
	display: inline-block;
	margin-top: 2px;
	border-bottom: 1px solid rgba(219, 24, 44, .15)
}

.footer__point-info .red:hover {
	border-color: #db182c
}

.footer__right-row {
	padding-top: 20px;
	display: flex;
	justify-content: center;
}

.footer__socials {
	display: flex;
	align-items: flex-start;
	padding: 20px 0 20px 10px
}

.footer__socials a {
	display: inline-block;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	border: 1px solid #232325;
	transition: all .25s ease-in-out;
	position: relative;
	font-size: 0;
	margin-right: 15px
}

.footer__socials a:hover {
	background: #db182c;
	border-color: #db182c
}

.footer__socials a img,
.footer__socials a svg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.footer__socials a .youtube {
	width: 18px;
	height: 12px
}

.footer__socials a .instagram {
	width: 16px;
	height: 16px
}

.footer__socials a .tiktok {
	width: 14px;
	height: 16px
}

.footer__socials a .facebook {
	width: 8px;
	height: 16px
}

.footer__payments {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-right: -3px;
	padding: 20px 0 20px
}

.footer__payments span {
	display: inline-block;
	padding: 3px;
	font-size: 0;
	margin: 3px;
	border-radius: 3px
}

.footer__payments span img {
	width: 75px;
	height: 24px;
}

.footer__payments span:hover {
	background: #ffffff
}

@media only screen and (max-width: 1124px) {
	.footer {
		padding: 70px 0 60px
	}

	.footer__right {
		width: 50%
	}

	.footer__menu {
		width: 52%
	}

	.footer__points {
		flex-direction: column
	}

	.footer__right-row {
		flex-wrap: wrap;
		padding-top: 0
	}

	.footer__point--large {
		order: -1
	}
}

@media only screen and (max-width: 992px) {
	.footer {
		padding: 60px 0 40px
	}

	.footer__left {
		padding-right: 20px
	}

	.footer__menu {
		padding: 0 10px;
		width: 50%
	}

	.footer__right {
		width: 46%;
		padding-left: 0
	}

	.footer__point--large .footer__point-info .large {
		font-size: 16px
	}

	.footer__socials {
		padding: 10px 0
	}

	.footer__payments {
		padding: 20px 0 0
	}
}

@media only screen and (max-width: 760px) {
	.footer {
		padding: 42px 0 34px
	}

	.footer__wrapper {
		flex-direction: column
	}

	.footer__menu {
		padding: 0;
		margin: 0 -5px;
		width: calc(100% + 10px)
	}

	.footer__menu-column {
		width: 50%;
		padding: 0 5px
	}

	.footer__menu-column a {
		font-size: 15px;
		line-height: 1.2;
		color: #777;
		margin: 8px 0
	}

	.footer .logotype {
		display: none
	}

	.footer__right {
		width: 100%;
		padding-top: 110px;
		position: relative
	}

	.footer__socials {
		position: absolute;
		left: 0;
		top: 30px;
		padding: 0
	}

	.footer__point-info .white {
		font-size: 14px
	}

	.footer__point-info .red {
		font-size: 14px
	}

	.footer__point--large {
		margin-top: 0;
		justify-content: center;
	}

	.footer__point--large .footer__point-info .white {
		font-size: 14px
	}

	.footer__point--large .footer__point-info .large {
		font-size: 16px
	}

	.footer__points-column {
		display: flex;
		margin: -3px 0px;
		/* padding: 18px 31px 0px 0px; */
		justify-content: center;
	}

	.footer__points-column .footer__point {
		margin-bottom: 0
	}

	.footer__points-column .footer__point:last-child {
		margin: 0px auto;
		justify-content: center;
	}

	.footer__left {
		justify-content: center;
		padding: 2px 93px 0;
		order: 5;
	}

	.footer__left p {
		font-size: 14px;
		margin: 0
	}

	.footer__right-row {
		width: 100%;
	}

	.footer__payments {
		margin: 30px 0 0;
		justify-content: flex-start;
		padding: 30px 0 0;
		border-top: 1px solid rgba(255, 255, 255, .1)
	}

	.footer__payments span {
		margin: 2px
	}

	.footer__payments span img {
		width: 115px;
		height: auto
	}
}
.logotypefooter{

width: 102px;
    height: 97px;
}
.footer__left {
    padding-right: 25px;
}