/* Global Styles */
:root {
    --primary-color: #25D366;
    --secondary-color: #128C7E;
    --dark-color: #075E54;
    --light-color: #DCF8C6;
    --white-color: #ffffff;
    --gray-color: #f8f9fa;
    --dark-gray: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #777;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-lg);
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: var(--white-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Modern Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(7, 94, 84, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    height: 70px;
    background: rgba(7, 94, 84, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background-color: var(--primary-color); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.5rem;
    color: var(--white-color);
    /* box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); */
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
    opacity: 0.9;
    transition: var(--transition);
    border-radius: 25px;
    display: block;
}

.nav-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    opacity: 1;
}

.nav-links li:last-child {
    margin-left: 10px;
}

.nav-links a.btn-small {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.nav-links a.btn-small:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--header-height) + 50px) 5% 50px;
    flex: 1;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulse-light 2s infinite;
}

.badge-new i {
    color: #FFD700;
    margin-left: 5px;
    animation: star-pulse 1.5s infinite;
}

@keyframes star-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: var(--light-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(37, 211, 102, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-feature i {
    color: var(--light-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.hero-feature span {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.users-feedback {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img, .more-users {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    margin-right: -10px;
    object-fit: cover;
}

.more-users {
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.users-feedback p {
    font-size: 0.9rem;
    color: var(--light-color);
    margin-bottom: 0;
}

.users-feedback .highlight {
    color: var(--white-color);
    font-weight: 600;
}

.hero-image-container {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    height: 500px;
}

.hero-image {
    position: relative;
}

.hero-image.main {
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) translateY(-20px);
}

.hero-image.secondary {
    position: absolute;
    z-index: 1;
    right: -40px;
    bottom: 0;
    opacity: 0.7;
    transform: perspective(1000px) rotateY(-15deg) scale(0.85) translateY(50px);
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    object-fit: cover;
}

.floating-notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 250px;
    animation: float 3s ease-in-out infinite;
}

.floating-notification.n1 {
    top: 20%;
    right: -30px;
    animation-delay: 0.5s;
}

.floating-notification.n2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-notification i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.floating-notification span {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.blob-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blob 8s linear infinite;
    z-index: 0;
}

@keyframes blob {
    0% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    25% { border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%; }
    50% { border-radius: 59% 41% 45% 55% / 45% 45% 55% 55%; }
    75% { border-radius: 37% 63% 38% 62% / 49% 55% 45% 51%; }
    100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.07) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    z-index: -1;
    opacity: 0.5;
}

.hero-brands {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 5%;
    margin-right: 5%;
}

.hero-brands p {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.brands-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.brand-icon:hover {
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Media queries update for hero section */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 100px 20px 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-features, .cta-buttons {
        justify-content: center;
    }
    
    .users-feedback {
        align-items: center;
    }
    
    .hero-image-container {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-notification {
        padding: 10px 15px;
        max-width: 200px;
    }
    
    .floating-notification i {
        font-size: 1rem;
    }
    
    .floating-notification span {
        font-size: 0.75rem;
    }
    
    .hero-brands {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-feature {
        padding: 6px 12px;
    }
    
    .hero-feature span {
        font-size: 0.8rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .hero-image.secondary {
        display: none;
    }
    
    .floating-notification.n1 {
        top: 10%;
        right: -20px;
    }
    
    .floating-notification.n2 {
        bottom: 15%;
        left: -20px;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
}

/* Features Section */
.features {
    background-color: var(--gray-color);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: var(--white-color);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 5%;
}

.feature-card {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1 1 250px;
    text-align: center;
    transition: var(--transition);
    max-width: 300px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #128C7E, #25D366);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.stats::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.stats::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #DCF8C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-color);
}

/* Media queries for stats section */
@media screen and (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 480px) {
    .stat-item {
        width: 90%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Services Section */
.services {
    background-color: var(--white-color);
    position: relative;
}

.service-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 0 5%;
}

.service-plan {
    background-color: var(--white-color);
    padding: 50px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1 1 300px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    max-width: 350px;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.service-plan::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-plan:hover::before {
    opacity: 1;
}

.service-plan:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-plan.featured {
    transform: scale(1.05);
    border: none;
    background: linear-gradient(135deg, #fcfcfc, #ffffff);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
    z-index: 1;
}

.service-plan.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.2);
}

.badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.service-plan h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: rgba(37, 211, 102, 0.3);
    border-radius: 10px;
}

.price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.service-plan ul {
    margin-bottom: 30px;
    text-align: left;
}

.service-plan ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.service-plan ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Demo Section */
.demo {
    background-color: var(--gray-color);
    position: relative;
}

.demo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white-color);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.demo-tab {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    color: var(--dark-gray);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.demo-tab i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.demo-tab:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.demo-tab.active {
    background-color: var(--white-color);
    color: var(--dark-color);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.demo-tab.active i {
    color: var(--primary-color);
}

.demo-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Phone Mockup */
.phone-mockup {
    flex: 1;
    max-width: 380px;
    margin: 0 auto;
    background-color: #1A1A1A;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    min-height: 630px;
}

.phone-header {
    height: 30px;
    position: relative;
    margin-bottom: 5px;
}

.phone-notch {
    width: 150px;
    height: 25px;
    background-color: #1A1A1A;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen {
    background-color: #EDEDED;
    border-radius: 30px;
    overflow: hidden;
    height: 580px;
    display: flex;
    flex-direction: column;
}

.phone-bottom {
    height: 4px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp chat interface */
.whatsapp-header {
    background-color: #128C7E;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    height: 60px;
}

.whatsapp-back, .whatsapp-menu {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-contact {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.contact-pic {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-weight: 600;
    font-size: 1rem;
}

.contact-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.whatsapp-chat {
    flex: 1;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAGMklEQVR4nO2aTYgkVRDH/70dXRf8WA9+gKIgyOiuiKAoKH7gisi6O6KHvSnoQd2ZQzMHPSjrxYsX8SbsQRRFUMS74EE8qCg5NXjoJQdBPMiirII6s85MvBQvs97Lqsrq7uqq/mA+YGCmu6reL+JFxIuIV4QQ/o9WQohqLlSVRgm89cRaSElIm3u8VB5+OlEtRMlbCiGEQiHrBigKEJEMgEgpAwBxMBgkWZZJ59wsEWVEVDHzAjMvE9ECALHYyc6bNzPPZVn2RJZlJyOfbcs2Kj0cDiWAJE3TeQApgMjMUURUAljz6+8B7DKzEkJIADVmHiqlpBDiTQCDZrP5IYDrTk5O6plMpnZ4eHg+gCQej2cRkfL5/CqAZ7TWd5l5GcBhkiTfZjIZCWCJma/M5XILUkoJYB7A1UKI7wHE7XZbb21tbQEwzWZTtFqt9cPDw/OMRqMnMnYtEU0Vi0VxtUvshw8f/jXP8889xv7RzD92/jbnmNlfd6l1zt3unJthjDUz++dnjHHO/e2cW1VKLRlj9pRS35iZX3LO7Trnto0xvznnLnfr5JyrnXPv+WNYWCBijEkBXN3pdB4IgsBM04ygWwC8AKAaDAavENEjAJ4moieJ6FoAyhhzSEQFgFuSJLkrTdNFAHcAeM8Y0zTGvGiMaRhjPu52u2eJ6JqpqalrAKwwcz2dTgvEcfwYgJc6nc6NzWZTSym3iegZrfXdzDyrtR4DeEVrvZ1l2WWttdJaq263+3WWZevMnGutH0+S5Nxpmu7MzMxsMfOmlLJWSr0O4EC0Wq1CKeUcM1Ov1yvCMNxg5iCO42PnHAEgAETMvBrH8V4YhlNhGCZhGK5qrediAPVwOCxHo1EVRZHM8/xvKeVH3W73fBRFVZ7nOYBLRqPRpaOjI20LALChlCq01m8CeK/T6ZxTSl1MkqQF4DGA97TWFwBEAHLv9QsAlIio3++vLCwsXEhEF3e73VVmvs45d6fW+iUAV5VluZEkyesA3vQBmrC1tXU/gJe73e6Lw+GwAjButVofAKi11ntVVa1UVXWeiNaYWQHYc84tMvMigE1mXmdmZuY9KaUhopfTND1/aWnpdQDrURQ9CeAtAG9vb29v1HW93G63/yi6TLF/G4DfB+N+vz/udDp/WGBXVXU0Ho8fM8ZcZow5MMZsK6W2lVK52YKYeUSJv/Qoi+LaQpYV1nf8WvzbwsxcVdXQGHOcpmkBYC6KogWt9Zox5h5jzBVKqUXn3OHe3t7XzFyZLrO09NeMb+bxtaNzKSAMw0kQieMYWutiMBhs9nq9D/v9/mfD4fA7AG8Q0XpRFI8S0Qel+8Y5d0BERVEUxzs7O59aa5+21t5nrX3KWnuftfZha+0d1tqttbW184joM9/SLymlvmDmASbZHhHRnDFmLo7j0d7eniaiosxzzpVleTEz32iMuakoikc8+GOl1AEz/2KtvdRae7219mpr7eXW2itL9z9m5j1r7evW2huMMV9Va4NL/UtK/yoWoGMSrSjd/6WmbflnlcmCkiSpiqK4cjwe71prR9bau6y1+Wg02i6KYt8YM7bWNtbaS4wxB8zsyrxgjDkcj8eX+Tx+WfmPGwA2TZJ++fQAkJSuzPxTlmXXCSH2pZRDKeVlUsohgIKZPwXQ6/V6HQCr3W73M+fcY0S0xMySiL6y1qaYJN35MEUzISJKkqTPzIiI6LskSW621s4IIfallJfYoijuLZVJkgRCiEdbrZYgogVrLUsp6ziO6ziOXb1eN+v1+mlmnmfmuaqqbgXwUK/Xu6nf77+T5/lbAFYAnATwPRFpALs7Ozv3MvO1zLwEoG2tHSilrmPmL3wNvaJr9s27HbdlDuCmFNGpTsFR2QIRpVVV3UBENwFAMDzUsrHsyy7LkmSdQBPCyFWmfnAP3eEADLlcx6P1zUq5xh5bAHOT/7/IM11QNco7w+qHscCnGamiZZCiO9Q5QQBYFJTzKzvL3TOLRhjDowxTGUtT73l5qurAPz7aQ4hZJZlxMwZM4tT91n4iVb44ioi8qlSnLrLUs8ZWVUdpP4tZxz5P9nvjkbyGBmyAAAAAElFTkSuQmCC');
    background-color: #E5DDD5;
    padding: 15px;
    overflow-y: auto;
}

.demo-tab-content {
    display: none;
}

.demo-tab-content.active {
    display: block;
}

.chat-message {
    margin-bottom: 12px;
    max-width: 85%;
    position: relative;
}

.chat-message.received {
    background-color: white;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.chat-message.sent {
    background-color: #DCF8C6;
    border-radius: 10px;
    padding: 10px 12px;
    margin-left: auto;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.message-content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #303030;
    white-space: pre-line !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.message-time {
    font-size: 0.7rem;
    color: #888;
    text-align: right;
    margin-top: 5px;
}

.chat-message.received .message-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.message-content strong {
    font-weight: 600;
}

/* Formatação para o gráfico */
.chart-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px auto;
    height: 150px;
}

.whatsapp-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.whatsapp-options button {
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.whatsapp-options button:hover {
    background-color: #ECECEC;
}

.pie-chart {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ECECEC;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slice {
    position: absolute;
    width: 100%;
    height: 100%;
    clip: rect(0, 150px, 150px, 75px);
}

.slice.s1 {
    transform: rotate(0deg);
    background-color: #128C7E;
    clip: rect(0, 75px, 150px, 0);
}

.slice.s2 {
    transform: rotate(144deg);
    background-color: #25D366;
    clip: rect(0, 75px, 150px, 0);
}

.slice.s3 {
    transform: rotate(216deg);
    background-color: #075E54;
    clip: rect(0, 75px, 150px, 0);
}

.slice.s4 {
    transform: rotate(288deg);
    background-color: #34B7F1;
    clip: rect(0, 75px, 150px, 0);
}

.slice.s5 {
    transform: rotate(324deg);
    background-color: #DCF8C6;
    clip: rect(0, 75px, 150px, 0);
}

.whatsapp-input {
    padding: 10px 15px;
    background-color: #EDEDED;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #D8D8D8;
}

.input-emoji, .input-send {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
}

.input-text {
    flex: 1;
}

.input-text input {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background-color: white;
    outline: none;
    font-size: 0.9rem;
}

/* Demo Feature List */
.demo-features {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.demo-feature-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
    display: none;
}

.demo-feature-item.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-details {
    flex: 1;
}

.feature-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-details ul {
    padding-left: 5px;
}

.feature-details li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-details li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.demo-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.demo-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #555;
}

/* Responsive styles for demo section */
@media screen and (max-width: 992px) {
    .demo-content-wrapper {
        flex-direction: column;
    }
    
    .phone-mockup, .demo-features {
        max-width: 380px;
        margin: 0 auto 40px;
    }
}

@media screen and (max-width: 576px) {
    .demo-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .demo-tab span {
        display: none;
    }
    
    .demo-tab i {
        margin: 0;
        font-size: 1.3rem;
    }
    
    .phone-mockup {
        transform: scale(0.9);
        margin: -15px auto 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Existing demo gallery styles to remove */
.demo-gallery {
    display: none;
}

.demo-image {
    display: none;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 0 5%;
    position: relative;
    z-index: 1;
}

.testimonial {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 350px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(37, 211, 102, 0.1);
}

.testimonial:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid rgba(37, 211, 102, 0.1);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq {
    background-color: var(--white-color);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--white-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(248, 249, 250, 0.8);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.08);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background-color: rgba(248, 249, 250, 0.8);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: rgba(37, 211, 102, 0.15);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* Buy Section */
.buy {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.buy::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.buy::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.buy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.buy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.buy-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-color);
    opacity: 0.9;
}

.buy-content .small {
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

.buy-content .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.buy-content .btn:hover {
    background-color: transparent;
    color: var(--white-color);
    transform: scale(1.1) translateY(-5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #075E54, #128C7E);
    color: var(--white-color);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -30px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.footer-branding {
    display: flex;
    align-items: center;
}

.footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #FFFFFF, #DCF8C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-media a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-whatsapp:hover {
    background-color: #25D366 !important;
}

.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.social-facebook:hover {
    background-color: #4267B2 !important;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    footer {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-branding {
        flex-direction: column;
    }
    
    .footer-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    
    .footer-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .footer-text h2 {
        font-size: 1.3rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .social-media a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 100px 20px 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 380px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active i {
        transform: rotate(90deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(7, 94, 84, 0.95), rgba(37, 211, 102, 0.9));
        width: 80%;
        max-width: 350px;
        height: 100vh;
        padding: 80px 30px 30px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        align-items: flex-start;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .nav-links li:last-child {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .nav-links a.btn-small {
        width: 100%;
        text-align: center;
        margin-left: 0;
        background-color: var(--white-color);
        color: var(--primary-color);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-plan.featured {
        transform: scale(1);
    }
    
    .service-plan.featured:hover {
        transform: scale(1.03);
    }
    
    .buy-content h2 {
        font-size: 2rem;
    }
    
    .contact-container {
        justify-content: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    section {
        padding: 80px 0;
    }
    
    .pricing-container {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card, .service-plan, .testimonial, .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px 35px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-card {
        min-width: 250px;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-badge {
        font-size: 0.7rem;
        padding: 4px 35px;
        right: -30px;
        top: 12px;
    }
}

/* Dashboard Section */
.dashboard {
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 140, 126, 0.05), rgba(37, 211, 102, 0.05));
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: 0;
}

.dashboard-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.dashboard-intro {
    flex: 1;
    max-width: 500px;
}

.dashboard-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.dashboard-intro p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dashboard-feature i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.dashboard-feature span {
    font-weight: 500;
    color: var(--dark-gray);
}

.dashboard-showcase {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.dashboard-images {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dashboard-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.dashboard-image.main {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.dashboard-image.secondary {
    opacity: 0.7;
    transform: translateX(-20%) scale(0.9);
    z-index: 2;
}

.dashboard-image.tertiary {
    opacity: 0.4;
    transform: translateX(-40%) scale(0.8);
    z-index: 1;
}

.dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s ease;
}

.dashboard-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.dashboard-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(18, 140, 126, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.control-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.control-dot:hover {
    background-color: var(--secondary-color);
}

@media screen and (max-width: 992px) {
    .dashboard-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .dashboard-intro, .dashboard-showcase {
        max-width: 100%;
    }
    
    .dashboard-images {
        height: 350px;
        margin: 0 auto;
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .dashboard-images {
        height: 320px;
        max-width: 95%;
    }
    
    .dashboard-image.main {
        opacity: 1;
        transform: translateX(0);
        z-index: 3;
    }
    
    .dashboard-image.secondary, 
    .dashboard-image.tertiary {
        opacity: 0;
        transform: translateX(0) scale(1);
        z-index: 1;
    }
    
    .image-caption {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
}

@media screen and (max-width: 576px) {
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .dashboard-images {
        height: 250px;
        max-width: 100%;
        overflow: visible;
        box-shadow: none;
    }
    
    .dashboard-image {
        width: 85%;
        height: 100%;
        left: 50%;
        transform: translateX(-50%) !important;
        box-shadow: var(--shadow);
        margin: 0 auto;
    }
    
    .dashboard-image.main {
        opacity: 1;
        z-index: 3;
    }
    
    .dashboard-image.secondary,
    .dashboard-image.tertiary {
        opacity: 0;
        z-index: 1;
    }
    
    .dashboard-intro h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .dashboard-intro p {
        font-size: 1rem;
        text-align: center;
    }
    
    .dashboard-features {
        justify-content: center;
    }
    
    .dashboard-feature i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .dashboard-intro .btn {
        display: block;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .dashboard-controls {
        margin-top: 15px;
        gap: 15px;
    }
    
    .control-dot {
        width: 14px;
        height: 14px;
    }
}

.slider-container {
    position: relative;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

@media screen and (max-width: 768px) {
    .slider-container {
        cursor: grab;
    }
    
    .slider-container:active {
        cursor: grabbing;
    }
    
    .dashboard-images {
        height: 320px;
        max-width: 95%;
    }
    
    .dashboard-image.main {
        opacity: 1;
        transform: translateX(0);
        z-index: 3;
    }
    
    .dashboard-image.secondary, 
    .dashboard-image.tertiary {
        opacity: 0;
        transform: translateX(0) scale(1);
        z-index: 1;
    }
    
    .image-caption {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
}

@media screen and (max-width: 576px) {
    .dashboard-container {
        padding: 0 10px;
    }
    
    .dashboard-showcase {
        padding: 0;
        width: 100%;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .dashboard-images {
        height: 250px;
        max-width: 100%;
        overflow: visible;
        box-shadow: none;
        margin-bottom: 20px;
    }
    
    .dashboard-image {
        width: 85%;
        height: 100%;
        left: 50%;
        transform: translateX(-50%) !important;
        box-shadow: var(--shadow);
        margin: 0 auto;
        border-radius: var(--border-radius);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .dashboard-image.main {
        opacity: 1;
        z-index: 3;
    }
    
    .dashboard-image.secondary,
    .dashboard-image.tertiary {
        opacity: 0;
        z-index: 1;
    }
    
    .dashboard-intro h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .dashboard-intro p {
        font-size: 1rem;
        text-align: center;
    }
    
    .dashboard-features {
        justify-content: center;
    }
    
    .dashboard-feature i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .dashboard-intro .btn {
        display: block;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .dashboard-controls {
        margin-top: 15px;
        gap: 15px;
    }
    
    .control-dot {
        width: 14px;
        height: 14px;
    }
}

.swipe-indicator {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.swipe-indicator span {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.swipe-indicator i {
    margin: 0 5px;
    color: var(--primary-color);
}

@media screen and (max-width: 576px) {
    .dashboard-container {
        padding: 0 10px;
    }
    
    .dashboard-showcase {
        padding: 0;
        width: 100%;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .dashboard-images {
        height: 250px;
        max-width: 100%;
        overflow: visible;
        box-shadow: none;
        margin-bottom: 20px;
    }
    
    .dashboard-image {
        width: 85%;
        height: 100%;
        left: 50%;
        transform: translateX(-50%) !important;
        box-shadow: var(--shadow);
        margin: 0 auto;
        border-radius: var(--border-radius);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .dashboard-image.main {
        opacity: 1;
        z-index: 3;
    }
    
    .dashboard-image.secondary,
    .dashboard-image.tertiary {
        opacity: 0;
        z-index: 1;
    }
    
    .dashboard-intro h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .dashboard-intro p {
        font-size: 1rem;
        text-align: center;
    }
    
    .dashboard-features {
        justify-content: center;
    }
    
    .dashboard-feature i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .dashboard-intro .btn {
        display: block;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .dashboard-controls {
        margin-top: 15px;
        gap: 15px;
    }
    
    .control-dot {
        width: 14px;
        height: 14px;
    }
    
    .swipe-indicator {
        bottom: 50px;
    }
    
    .swipe-indicator span {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Lightbox para imagens do dashboard */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    padding: 0;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1060;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Ajustes para o cursor nas imagens do dashboard indicando que são clicáveis */
.dashboard-image {
    cursor: pointer;
}

.dashboard-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.dashboard-image:hover::after {
    opacity: 1;
    content: '🔍';
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: -35px;
        right: 0;
        font-size: 28px;
    }
} 