/* Estilos Gerais */
:root {
    --primary: #3E9FE6;
    --primary-gradient: linear-gradient(45deg, #2D8DD1 0%, #3E9FE6 100%);
    --secondary: #4CAF50;
    --light: #f8f9fa;
    --dark: #161A1E;
    --gray: #a0a0a0;
    --text-color: #e6e6e6;
    --bg-color: #1E2328;
    --card-bg: #272C33;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #0480bd 0%, #08A6F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(8, 166, 245, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(8, 166, 245, 0.5);
    transform: translateY(-2px);
    background: linear-gradient(45deg, #0494da 0%, #1ab2fa 100%);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 2px solid rgba(8, 166, 245, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(8, 166, 245, 0.1);
    color: #08A6F5;
    border-color: #08A6F5;
}

.btn-outline {
    border: 2px solid #08A6F5;
    color: #08A6F5;
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #0480bd 0%, #08A6F5 100%);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    background-color: #20bd5a;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn i {
    margin-right: 8px;
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 35, 40, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(30, 35, 40, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 180px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
}

.main-nav a:hover {
    color: var(--primary);
}

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
}

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

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(8, 166, 245, 0.2);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3E9FE6, #45B4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(8, 166, 245, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    width: 100%;
    text-align: center;
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.features {
    background-color: #1A1E22;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.features-cta {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Por que um app? */
.why-native {
    background-color: #1A1E22;
    position: relative;
    overflow: hidden;
}

/* Dashboard Section */
.dashboard-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dashboard-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-features {
    flex: 1;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-feature i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.dashboard-feature p {
    font-size: 18px;
    color: var(--text-color);
}

.dashboard-features .btn {
    margin-top: 20px;
}

/* Monetização */
.monetization {
    background-color: #1A1E22;
}

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

.monetization-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.monetization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(62, 159, 230, 0.15);
}

.monetization-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    box-shadow: 0 5px 15px rgba(62, 159, 230, 0.2);
}

.monetization-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.monetization-card p {
    color: var(--gray);
}

/* Notificações Geolocalizadas */
.geo-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.geo-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.geo-text {
    flex: 1;
}

.geo-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.geo-text p {
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--gray);
}

.geo-text ul {
    margin-bottom: 25px;
}

.geo-text ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.geo-text ul li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

/* Suporte */
.support {
    background-color: #1A1E22;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.support-text {
    flex: 1;
}

.support-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.support-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.support-feature i {
    font-size: 28px;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.support-feature h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.support-feature p {
    color: var(--gray);
}

/* Testemunhos */
.testimonials {
    background: linear-gradient(180deg, #1A1E22 0%, #222831 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.03;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(39, 44, 51, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(62, 159, 230, 0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(62, 159, 230, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(62, 159, 230, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

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

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* CTA Section */
.cta {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e0e0e0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 166, 245, 0.2);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #171B1F;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.7;
    color: var(--gray);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-color);
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.7;
    transition: var(--transition);
    color: var(--gray);
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.7;
    color: var(--gray);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    opacity: 0.5;
    font-size: 14px;
    color: var(--gray);
}

/* Ajustes para as imagens enviadas */
.logo img {
    max-height: 50px;
    width: auto;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.dashboard-image img {
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.geo-image img, 
.support-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .dashboard-content,
    .geo-content,
    .support-content {
        flex-direction: column;
    }
    
    .dashboard-image,
    .geo-image,
    .support-image {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }

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

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

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 30px;
    }
    
    .testimonial-controls {
        margin-top: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Planos de Assinatura */
.pricing {
    background-color: #1A1E22;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.pricing .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing .section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #3E9FE6, #6FC6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #242830;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(62, 159, 230, 0.3);
}

.pricing-card.popular {
    border-color: #3E9FE6;
    transform: scale(1.05);
}

.pricing-card.popular:before {
    content: 'Mais popular';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(to right, #3E9FE6, #6FC6FF);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: #2E3238;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.pricing-header .pricing-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.pricing-price .price {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.pricing-price .period {
    font-size: 16px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-image {
    text-align: center;
    margin: 15px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-image img {
    max-width: 100%;
    max-height: 120px;
}

.pricing-image i {
    color: rgba(62, 159, 230, 0.7);
}

.pricing-image .fa-mobile-alt {
    color: rgba(76, 175, 80, 0.7);
    font-size: 2.5em;
}

.pricing-image .fa-apple {
    color: rgba(153, 153, 153, 0.7);
    font-size: 2em;
}

.pricing-image .fa-infinity {
    color: rgba(255, 152, 0, 0.7);
    font-size: 1.5em;
}

.pricing-image .fa-plus {
    color: rgba(153, 153, 153, 0.5);
    font-size: 1.2em;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features ul {
    margin-bottom: 30px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.pricing-features ul li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

.pricing-features ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #3E9FE6;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
}

.pricing-card .btn-primary {
    background: linear-gradient(to right, #3E9FE6, #6FC6FF);
    border: none;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(to right, #3E9FE6, #3E9FE6);
    box-shadow: 0 5px 15px rgba(62, 159, 230, 0.4);
}

.pricing-card .btn-outline {
    background: transparent;
    border: 2px solid #3E9FE6;
    color: #3E9FE6;
}

.pricing-card .btn-outline:hover {
    background: rgba(62, 159, 230, 0.1);
}

.pricing-discount {
    display: inline-block;
    background: rgba(62, 159, 230, 0.15);
    color: #3E9FE6;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing .section-header h2 {
        font-size: 32px;
    }
}

/* Remover o carrossel antigo para planos */
.pricing-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.pricing-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.pricing-card {
    max-width: 400px;
    width: 100%;
}

.pricing-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.pricing-prev,
.pricing-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-prev:hover,
.pricing-next:hover {
    background: var(--primary-gradient);
    color: white;
}

.pricing-carousel-controls {
    display: flex;
    gap: 10px;
}

.pricing-carousel-controls .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-carousel-controls .carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsividade do carrossel de planos */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-slide {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .pricing-navigation {
        flex-wrap: wrap;
    }
    
    .pricing-carousel-controls {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* Contador de Usuários */
.users-counter {
    background: linear-gradient(45deg, #1A1E22, #24292e);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.users-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.counter-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.users-counter h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.3;
}

.counter-display {
    padding: 10px 0;
    display: inline-block;
    margin: 0 auto;
}

.counter-number {
    font-size: 72px;
    font-weight: 700;
    color: #3E9FE6;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    line-height: 1.2;
}

.counter-label {
    font-size: 22px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 20px;
}

.counter-info {
    color: var(--gray);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .users-counter h2 {
        font-size: 30px;
    }
    
    .counter-number {
        font-size: 42px;
    }
    
    .counter-label {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .users-counter {
        padding: 60px 0;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-label {
        font-size: 16px;
    }
}

/* Estilos LGPD - Aprimorado */
.cookie-consent {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(25, 28, 33, 0.92);
    padding: 22px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35), 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(62, 159, 230, 0.12);
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
    pointer-events: none;
}

.cookie-consent.active {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
    pointer-events: all;
}

.cookie-text {
    margin-bottom: 20px;
}

.cookie-text h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    position: relative;
    display: inline-block;
    letter-spacing: -0.2px;
}

.cookie-text h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0480bd, #08A6F5);
    border-radius: 3px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.cookie-text a {
    color: #08A6F5;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-text a:hover {
    color: white;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-accept-all {
    background: linear-gradient(45deg, #0480bd 0%, #08A6F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(8, 166, 245, 0.25);
}

.btn-accept-all:hover {
    box-shadow: 0 6px 18px rgba(8, 166, 245, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(45deg, #0494da 0%, #1ab2fa 100%);
}

.btn-accept-necessary {
    background-color: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-settings {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    padding: 10px 15px;
    border: none;
}

.btn-cookie-settings:hover {
    color: white;
    background-color: transparent;
}

@media (min-width: 768px) {
    .cookie-consent {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-text {
        flex: 1;
        margin-bottom: 0;
        padding-right: 30px;
    }
    
    .cookie-buttons {
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .btn-cookie-settings {
        order: 3;
        text-align: center;
        margin-top: -5px;
    }
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(62, 159, 230, 0.15);
}

.cookie-settings-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-settings-header {
    margin-bottom: 24px;
}

.cookie-settings-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.cookie-settings-header p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

.cookie-settings-options {
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.cookie-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cookie-checkbox {
    margin-right: 15px;
    margin-top: 5px;
    transform: scale(1.2);
}

.cookie-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: white;
}

.cookie-info p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray);
}

.cookie-settings-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.privacy-policy-modal {
    border-radius: 16px !important;
    border: 1px solid rgba(62, 159, 230, 0.15) !important;
}

.close-privacy-policy {
    background: linear-gradient(45deg, #0480bd 0%, #08A6F5 100%) !important;
    border-radius: 30px !important;
    padding: 12px 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.close-privacy-policy:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(8, 166, 245, 0.3) !important;
} 