/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 120px; /* Espaço para o header fixo + barra de notificação */
    transition: padding-top 0.3s ease;
}

/* Quando a notificação for fechada, reduz o padding */
body.notification-closed {
    padding-top: 80px;
}

/* Variáveis CSS */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Barra de Notificação de Atualização */
.update-notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

.update-notification-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 50px 0 20px; /* Espaço à direita para o botão X */
    position: relative;
}

.update-notification-content i.fas.fa-download {
    font-size: 16px;
    color: #ffd700;
}

.update-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.update-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.update-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.close-notification {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 10;
    min-width: 26px;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-notification:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

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

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Quando a notificação for fechada, o header volta ao topo */
.header.notification-closed {
    top: 0;
}

.nav {
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Seletor de Idiomas */
.language-selector {
    display: flex;
    gap: 4px;
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.language-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-software-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 1;
}

.hero-play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.hero-play-button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

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



/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Feature Showcase Carousel */
.feature-showcase {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: auto;
}

.carousel-slide {
    display: none;
    width: 100%;
    min-height: 400px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

/* Controles do Carousel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.showcase-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.showcase-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Compatibility Section */
.compatibility {
    padding: 100px 0;
    background: var(--bg-light);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.device-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.device-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.device-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.device-item p {
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-message {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 600px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-card > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
}

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

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta .btn-outline {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

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

.modal-content {
    background-color: var(--bg-white);
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}



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

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.5rem;
}

.close {
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon-inline {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details-inline h4 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details-inline p {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details-inline small {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.8;
}



/* Form */
.trial-form {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.4;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
}

/* Container para telefone com código do país */
.phone-input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 4px;
}

.country-code-select {
    width: 100%;
    max-width: 200px;
    font-size: 14px;
    padding: 12px 16px;
    text-align: left;
    background-color: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.country-code-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.phone-input-container input[type="tel"] {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    background: var(--bg-white);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.phone-input-container input[type="tel"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    color: var(--text-light);
}

/* Campo com texto em maiúsculo */
.uppercase-input {
    text-transform: uppercase;
}

/* Container do campo de senha com botão */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding-right: 50px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    padding: 4px;
    transition: color 0.3s ease;
    z-index: 1;
}

.password-toggle-btn:hover {
    color: var(--primary-color);
}

.password-toggle-btn:focus {
    outline: none;
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    /* Ajustes da barra de notificação para mobile */
    .update-notification-content {
        padding: 0 45px 0 15px;
        gap: 12px;
    }
    
    .update-text {
        font-size: 12px;
    }
    
    .update-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .update-notification-content i.fas.fa-download {
        font-size: 14px;
    }
    
    .close-notification {
        font-size: 14px;
        min-width: 24px;
        min-height: 24px;
    }
    
    /* Container para botões e seletor de idiomas */
    .nav-buttons {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    /* Container específico para os botões de ação */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .action-buttons .btn {
        padding: 7px 12px;
        font-size: 12px;
        min-width: 85px;
        white-space: nowrap;
    }
    
    /* Seletor de idiomas ao lado direito */
    .language-selector {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-left: 8px;
        flex-shrink: 0;
    }
    
    .language-btn {
        padding: 6px 8px;
        font-size: 11px;
        min-width: 50px;
    }
    
    .language-btn {
        padding: 4px 6px;
        font-size: 0.65rem;
        gap: 3px;
        min-width: 55px;
        justify-content: center;
    }
    
    /* PT fica ao lado do EN */
    .language-btn[data-lang="pt"] {
        order: 1;
    }
    
    .language-btn[data-lang="en"] {
        order: 2;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
    
    .language-btn span {
        font-size: 0.65rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Melhorias do Modal para tablets */
    .modal-content {
        margin: 3% auto;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .trial-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 2fr 1fr;
        gap: 15px;
    }
    
    .feature-showcase {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .carousel-container {
        min-height: 350px;
    }
    
    .carousel-slide {
        min-height: 350px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: 350px;
    }
    
    .carousel-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .showcase-text h3 {
        font-size: 1.8rem;
    }
    
    .showcase-text p {
        font-size: 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Responsividade para telefone */
    .phone-input-container {
        flex-direction: row;
        gap: 0;
        width: 100%;
    }
    
    .country-code-select {
        flex: 0 0 120px;
        min-width: 120px;
        font-size: 13px;
        padding: 12px 6px;
    }
    
    .phone-input-container input[type="tel"] {
        flex: 1;
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    

    
    .pricing-card {
        padding: 30px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-inline {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-item-inline {
        padding: 15px;
    }
    
    .contact-icon-inline {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details-inline h4 {
        font-size: 1rem;
    }
    
    .contact-details-inline p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Header melhorado para telas muito pequenas */
    .nav-container {
        padding: 0 10px;
        gap: 6px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Ajustes da barra de notificação para telas pequenas */
    .update-notification-content {
        padding: 0 40px 0 12px;
        gap: 10px;
    }
    
    .update-text {
        font-size: 11px;
    }
    
    .update-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .update-notification-content i.fas.fa-download {
        font-size: 13px;
    }
    
    .close-notification {
        font-size: 13px;
        min-width: 22px;
        min-height: 22px;
    }
    
    .nav-logo h2 {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .nav-buttons {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    
    .action-buttons .btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 75px;
    }
    
    .language-selector {
        display: flex;
        gap: 2px;
        margin-left: 6px;
        flex-shrink: 0;
    }
    
    .language-btn {
        padding: 5px 6px;
        font-size: 10px;
        min-width: 30px;
    }
    
    .language-btn {
        padding: 3px 4px;
        gap: 2px;
        font-size: 0.6rem;
        border-radius: 4px;
        min-width: 35px;
    }
    
    .flag-icon {
        width: 12px;
        height: 9px;
    }
    
    .language-btn span {
        font-size: 0.55rem;
        letter-spacing: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-image-container {
        max-width: 320px;
        border-radius: 16px;
    }
    
    .hero-software-image {
        border-radius: 16px;
    }
    
    .hero-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-showcase {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .carousel-container {
        min-height: 300px;
    }
    
    .carousel-slide {
        min-height: 300px;
    }
    
    .showcase-content {
        min-height: 300px;
    }
    
    .showcase-text h3 {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    /* Correções do Modal para dispositivos móveis */
    .modal-content {
        margin: 1% auto;
        width: 95%;
        max-height: 98vh;
        overflow-y: auto;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
        position: sticky;
        top: 0;
        background: var(--bg-white);
        z-index: 10;
        border-bottom: 1px solid var(--border-color);
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .trial-form {
        padding: 20px;
        padding-bottom: 30px;
        flex: 1;
        overflow-y: auto;
        min-height: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .checkbox-group {
        margin-bottom: 15px;
    }
    
    .btn-full {
        padding: 16px;
        font-size: 16px;
        margin-top: 10px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: auto;
    min-width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-light);
    cursor: pointer;
    flex: 1;
}

.checkbox-group label:hover {
    color: var(--text-dark);
}

/* Estilos para campos com erro */
.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    animation: fadeInUp 0.3s ease;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Media query para telas muito pequenas (320px) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 8px;
        gap: 4px;
        min-height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-logo h2 {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .nav-buttons {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        flex-wrap: nowrap;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .action-buttons .btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 65px;
    }
    
    .language-selector {
        display: flex;
        gap: 1px;
        margin-left: 4px;
        flex-shrink: 0;
    }
    
    .language-btn {
        min-width: 26px;
    }
    
    .language-btn {
        padding: 2px 3px;
        gap: 1px;
        font-size: 0.55rem;
        border-radius: 3px;
        min-width: 30px;
    }
    
    .flag-icon {
        width: 10px;
        height: 8px;
    }
    
    .language-btn span {
        font-size: 0.5rem;
    }
    
    /* Ajuste da barra de notificação para telas muito pequenas */
    .update-notification-content {
        padding: 0 35px 0 10px; /* Espaço garantido para o botão X */
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .update-text {
        font-size: 11px;
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 3px;
        padding-right: 5px;
    }
    
    .update-btn {
        padding: 4px 8px;
        font-size: 9px;
        order: 2;
        border-radius: 15px;
    }
    
    .close-notification {
        right: 8px;
        font-size: 12px;
        order: 3;
        min-width: 22px;
        min-height: 22px;
        padding: 3px;
    }
    
    .update-notification-content i.fas.fa-download {
        font-size: 12px;
        order: 0;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* ===== MODAL DE AVISO HOTMAIL ===== */

/* Overlay do modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Container principal do modal */
.modal-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.show .modal-container {
    transform: scale(1) translateY(0);
}

/* Header do modal */
.modal-header {
    display: flex;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.modal-icon i {
    color: white;
    font-size: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.modal-close:hover {
    background: #e5e5e5;
    color: #333;
    transform: scale(1.05);
}

/* Body do modal */
.modal-body {
    padding: 24px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-message {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.modal-message strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Seção de recomendação */
.modal-recommendation {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.recommendation-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommendation-icon i {
    color: white;
    font-size: 14px;
}

.recommendation-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.recommendation-text strong {
    color: #2d3748;
    font-weight: 600;
}

/* Nota informativa */
.modal-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.modal-note i {
    color: #6366f1;
    font-size: 14px;
}

/* Footer do modal */
.modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px;
    justify-content: flex-end;
}

/* Botões do modal */
.modal-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.modal-btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.modal-btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.modal-btn-primary:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-header {
        padding: 20px 20px 12px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 12px 20px 20px;
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-message {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        margin: 10px;
        border-radius: 12px;
        max-height: calc(100vh - 20px);
    }
    
    .modal-header {
        padding: 16px 16px 12px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 12px 16px 16px;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .modal-icon i {
        font-size: 18px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-message {
        font-size: 14px;
    }
    
    .recommendation-text p {
        font-size: 13px;
    }
    
    .modal-note {
        font-size: 12px;
    }
}