/* Efeito de Revelação ao Rolar */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Atrasos para os elementos */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Efeitos específicos */
.reveal-up { transform: translateY(50px); }
.reveal-down { transform: translateY(-50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }
.reveal-rotate { transform: rotate(-5deg); }

.reveal-visible.reveal-up,
.reveal-visible.reveal-down,
.reveal-visible.reveal-left,
.reveal-visible.reveal-right,
.reveal-visible.reveal-scale,
.reveal-visible.reveal-rotate {
    transform: translate(0) scale(1) rotate(0);
}

/* Base Styles */
:root {
    --primary-color: #6201ED;
    --primary-light: #9c4dff;
    --primary-dark: #4a00b9;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #eeeeee;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

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

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

section {
    padding: 40px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn i {
    margin-right: 10px;
    font-size: 1.4em;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    transform: scale(0.9);
}

/* Efeito de brilho ao passar o mouse */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg) translate(-20%, -50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 1, 237, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-primary:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(100%, -50%);
}

.btn-primary:hover i {
    transform: scale(1.1);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(98, 1, 237, 0.3);
}

.btn-primary i {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Efeito de pulso para o botão principal no hero */
.hero .btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 1, 237, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(98, 1, 237, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(98, 1, 237, 0);
    }
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    margin-left: 1.2rem;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(98, 1, 237, 0.1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 50px;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98, 1, 237, 0.3);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(98, 1, 237, 0.2);
}

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

.features .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 100vw;
    overflow: hidden;
    padding: 15px 0;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(98, 1, 237, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Menu de Navegação Mobile */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 5px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Animações de entrada para os itens do menu */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links li a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        color: var(--text-color);
        transition: color 0.3s ease;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--primary-color);
        background: none;
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 8px 4px;
    margin-left: 10px;
    -webkit-tap-highlight-color: transparent;
    /* Melhorar acessibilidade */
    border: none;
    background: transparent;
    outline: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

.hamburger:hover span {
    background: var(--primary-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* Hero Section */
.hero {
    padding: 30px 0 50px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

/* Estilo específico para o botão da Play Store no hero */
.hero .btn-primary {
    background: linear-gradient(135deg, #FFA000, #FF6D00);
    color: white;
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero .btn-primary i {
    font-size: 1.1em;
    margin-right: 8px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.4);
}

.hero .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(255, 109, 0, 0.3);
}

/* Texto ao lado do botão */
.hero .btn-text {
    display: inline-block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    margin-left: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .hero .btn-primary {
        margin: 25px auto 0;
        display: flex;
        max-width: fit-content;
    }
    
    .hero .btn-text {
        display: block;
        margin: 15px 0 0;
        text-align: center;
    }
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo .logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff !important;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-image-container {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-featured-image {
    max-width: 100%;
    max-height: 650px; /* Aumentado de 500px para 650px */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform; /* Melhora a performance da animação */
}

.hero-featured-image:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .hero-logo .logo-img {
        margin: 0 auto 15px;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .hero-image-container {
        margin-top: 30px;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-featured-image {
        max-height: 500px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    /* Base section spacing */
    section {
        padding: 20px 0;
    }
    
    /* Header adjustments */
    .header {
        padding: 10px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .header-content {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    
    .logo img {
        height: auto;
        max-height: 30px;
        width: auto;
        max-width: 100%;
    }
    
    .btn-download-header {
        padding: 6px 14px;
        font-size: 0.8rem;
        margin: 0;
        white-space: nowrap;
        border-radius: 50px;
        height: auto;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .logo {
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        min-width: 0;
    }
    
    /* Hero section */
    .hero {
        padding: 15px 0;
    }
    
    .hero .container {
        padding-top: 10px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero p {
        margin-bottom: 15px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-featured-image {
        max-height: none;
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .hero-image-container {
        width: 100%;
        overflow: hidden;
        margin-top: 15px;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Section headers */
    h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .divider {
        margin: 10px auto 15px;
    }
    
    /* Features section */
    .features-content {
        gap: 15px;
        margin-top: 10px;
    }
    
    .feature-card {
        padding: 15px 12px;
        margin-bottom: 10px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    /* Screenshots section */
    .screenshots .section-header {
        margin-bottom: 20px;
    }
    
    /* CTA section */
    .cta {
        padding: 25px 0;
    }
    
    .cta h2 {
        margin-bottom: 15px;
    }
    
    .cta p {
        margin-bottom: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 20px 0 15px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-bottom {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 0.85rem;
    }
}


/* About Section */
.about {
    background-color: var(--background);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Features Section */
.features {
 background-color: var(--primary-color);
}

.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    height: 8px;
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(98, 1, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 30px;
}

/* Infinite Carousel Section */
.screenshots {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.infinite-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.infinite-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
    position: relative;
    width: 100%;
    will-change: transform;
}

.infinite-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
    min-width: 0;
    height: 100%;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screenshot-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 750px;
    margin: 0 8px;
}

.screenshot-card img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    object-position: center;
}

.screenshot-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screenshot-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.screenshot-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    margin: 0 auto;
}

/* Controles de navegação */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Estilos do Carrossel */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 100%;
    align-items: center;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 15px;
    box-sizing: border-box;
    /* Garante que os slides clonados não quebrem o layout */
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Esconde os slides clonados para leitores de tela */
.carousel-slide.cloned {
    visibility: visible !important;
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Dots de Navegação */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

/* Hide carousel dots on mobile */
@media (max-width: 768px) {
    .carousel-dots {
        display: none !important;
    }
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Hide dots on mobile */
@media (max-width: 768px) {
    .carousel-dots {
        display: none;
    }
}

/* Responsividade */
@media (min-width: 769px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .carousel-container {
        padding: 0 80px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 10px;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .screenshot-card {
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .screenshot-card img {
        width: 100%;
        height: auto;
        max-height: 500px;
        padding: 5px;
        object-fit: contain;
    }
    
    .screenshot-info {
        padding: 15px;
        text-align: center;
    }
    
    /* Ajuste para garantir que o conteúdo não fique muito apertado */
    .screenshot-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .screenshot-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Reorder content for mobile */
@media (max-width: 768px) {
    .screenshot-card {
        flex-direction: column;
        margin: 0 4px;
    }
    
    .screenshot-info {
        order: -1;
        padding: 15px;
        text-align: center;
    }
    
    .screenshot-card img {
        order: 2;
    }
    
    /* Hide carousel dots on mobile */
    .carousel-dots {
        display: none !important;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    .carousel-dot.active {
        width: 18px;
    }
}

/* Animações */
@keyframes slideIn {
    from { opacity: 0.5; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.carousel-slide {
    animation: slideIn 0.5s ease-out;
}

/* Estilo dos Cards */
.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px; /* Altura mínima para garantir espaço para a imagem */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px 16px 0 0;
}

.screenshot-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screenshot-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.screenshot-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.screenshots-carousel {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    justify-content: flex-start;
    align-items: center;
    scroll-padding: 0 15px;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.screenshot-slide {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: start;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.screenshot-caption {
    padding: 25px;
    text-align: center;
    background: white;
}

.screenshot-caption h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.screenshot-caption p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.screenshot-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-top: 1px solid #f0f0f0;
}

.screenshot-slide:hover img {
    transform: scale(1.03);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
    .screenshot-slide {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (min-width: 1024px) {
    .screenshot-slide {
        flex: 0 0 calc(33.333% - 30px);
    }
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.screenshot:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials .section-header h2 {
    color: var(--text-color);
}

.testimonials .divider {
    background: var(--primary-color);
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    width: 8px;
    opacity: 1;
}

.testimonial-card .rating {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 1.2em;
    display: flex;
    gap: 5px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    font-size: 1.05em;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -15px;
    font-size: 4em;
    color: rgba(98, 1, 237, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author img {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-card .author-info h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1em;
    font-weight: 600;
}

.testimonial-card .author-info span {
    color: var(--text-light);
    font-size: 0.9em;
    display: block;
    margin-top: 3px;
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card p {
        font-size: 1em;
    }
}

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

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: white;
}

.contact .section-header h2 {
    color: white;
    margin-bottom: 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info,
.contact-slide {
    width: 100%;
    height: 100%;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(98, 1, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(98, 1, 237, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-card .btn-outline {
    margin-top: 15px;
    padding: 10px 25px;
    font-size: 0.9rem;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.contact-card .btn-outline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 1, 237, 0.3);
}

/* Social Card */
.social-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-card h3 {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 250px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f5ff;
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: left;
}

.social-link i {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link span {
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.social-link:hover i {
    background: white;
    color: var(--primary-color);
}

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

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Ajustes para telas médias (tablets) */
/* Estilos dos elementos do card */
.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(98, 1, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.contact-card .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 1, 237, 0.2);
}

/* Efeito hover no card */
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 0;
    font-size: 0.95rem;
}

.footer-content {
    padding-bottom: 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 350px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo, 
    .footer-contact {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact ul {
        display: inline-block;
        text-align: left;
    }
}

/* Melhorias de Toque para Dispositivos Móveis */
@media (hover: none) and (pointer: coarse) {
    .btn, a, button {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-links li a {
        padding: 15px 20px;
    }
    
    /* Melhorar feedback visual em toques */
    a, button, .btn, .nav-links li a {
        -webkit-tap-highlight-color: rgba(98, 1, 237, 0.1);
    }
    
    /* Ajustar tamanhos de fonte para melhor legibilidade */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-content,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        padding: 12px;
    }
}
