/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #0d78f1;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(-45deg, #2c3e50, #00233a, #010436, #1abc9c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.text-center {
    text-align: center;
}

/* Barra de Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(44, 62, 80, 0.95);
    padding: 10px 0;
}

header.scrolled .logo a,
header.scrolled nav ul li a {
    color: var(--text-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 06px 0;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: none;
    text-decoration: none;
}

.logo span {
    color: #006b8c;

}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    padding: 60px 0;
    margin: 0;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Puzzle Section 
.puzzle {
    width: 300px;
    height: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 15;
}

.piece {
    width: 100px;
    height: 100px;
    background-size: 300px 300px;
    border: 1px solid #8f0d0d;
    opacity: 0;
    transform: scale(0.8);
    animation: montar 0.6s forwards;
}

@keyframes montar {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Decorative Shapes 
.shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.5;
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

.shape-2 {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}*/

/* Section Titles */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.225rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

/* Services Section */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    background-color: rgba(70, 179, 206, 0.337);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.31);
    background-color: rgba(70, 179, 206, 0.337);
    /* tom mais claro */
    border-color: var(--accent-color);
}

.service-card a.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto 2rem;
    text-align: center;
}


.service-card:hover::before {
    opacity: 1;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: stretch;
}

.service-content {
    flex-grow: 1;
    padding: 2rem;
    text-align: center;
}


.service-card h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.75rem;
    text-align: center;
    /* centralizado */
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: white;
    /* destaque centralizado */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

/*distancia entre os icone */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0;
    border: none;
    background: none;
    box-shadow: none;
    text-align: left;
}

.service-feature::before {
    content: '\f00c';
    /* ícone de check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgb(18, 231, 231);
    font-size: 1rem;
}


/* Ícones específicos por item *//* -------- Card 1: Aplicativo Básico -------- */

/* CRUD básico */
/* -------- Card 1: Aplicativo Básico -------- */

/* CRUD básico */
.service-card:nth-child(1) .service-feature:nth-child(1)::before {
    content: '\f1c0'; /* fa-database */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Integração com 1 API */
.service-card:nth-child(1) .service-feature:nth-child(2)::before {
    content: '\f1e0'; /* fa-plug */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* 3 a 5 telas */
.service-card:nth-child(1) .service-feature:nth-child(3)::before {
    content: '\f3cd'; /* fa-mobile-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Dashboard Básico */
.service-card:nth-child(1) .service-feature:nth-child(4)::before {
    content: '\f201'; /* fa-chart-bar */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Layout mínimo */
.service-card:nth-child(1) .service-feature:nth-child(5)::before {
    content: '\f1fc'; /* fa-paint-brush */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Publicação Play Store */
.service-card:nth-child(1) .service-feature:nth-child(6)::before {
    content: '\f17b'; /* fa-android */
    font-family: "Font Awesome 5 Brands";
}

/* Suporte 30 dias */
.service-card:nth-child(1) .service-feature:nth-child(7)::before {
    content: '\f590'; /* fa-headset */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


/* -------- Card 2: Aplicativo Avançado -------- */

/* Cadastro/Login de usuários */
.service-card:nth-child(2) .service-feature:nth-child(1)::before {
    content: '\f502'; /* fa-user-lock */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Integração com até 2 APIs */
.service-card:nth-child(2) .service-feature:nth-child(2)::before {
    content: '\f1e0'; /* fa-plug */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Layout customizado */
.service-card:nth-child(2) .service-feature:nth-child(3)::before {
    content: '\f1fc'; /* fa-paint-brush */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* 5 a 8 telas */
.service-card:nth-child(2) .service-feature:nth-child(4)::before {
    content: '\f3cd'; /* fa-mobile-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Publicação Android + iOS */
.service-card:nth-child(2) .service-feature:nth-child(5)::before {
    content: '\f54e'; /* fa-store (representa as lojas) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Painel administrativo */
.service-card:nth-child(2) .service-feature:nth-child(6)::before {
    content: '\f201'; /* fa-tasks */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Suporte técnico 30 dias */
.service-card:nth-child(2) .service-feature:nth-child(7)::before {
    content: '\f590'; /* fa-headset */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


/* -------- Card 3: Aplicativo Premium -------- */

/* Cadastro/Login múltiplos usuários */
.service-card:nth-child(3) .service-feature:nth-child(1)::before {
    content: '\f0c0'; /* fa-users */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* 8 a 12 telas */
.service-card:nth-child(3) .service-feature:nth-child(2)::before {
    content: '\f3cd'; /* fa-layer-group */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Integração com até 3 APIs */
.service-card:nth-child(3) .service-feature:nth-child(3)::before {
    content: '\f1e0'; /* fa-plug */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Layout Premium */
.service-card:nth-child(3) .service-feature:nth-child(4)::before {
    content: '\f1fc'; /* fa-paint-brush */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Painel administrativo Web */
.service-card:nth-child(3) .service-feature:nth-child(5)::before {
    content: '\f201'; /* fa-globe */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Publicação Android + iOS */
.service-card:nth-child(3) .service-feature:nth-child(6)::before {
    content: '\f54e'; /* fa-store */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Suporte 60 dias */
.service-card:nth-child(3) .service-feature:nth-child(7)::before {
    content: '\f590'; /* fa-headset */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}



.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background-color: rgba(59, 130, 246, 0.1);
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* mobile: um card por linha */
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--light);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content)); /* limite do tamanho real do card */
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center; /* agora funciona */
}



.pricing-card {
    background-color: rgba(70, 179, 206, 0.337);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
    max-width: 1000px;   /* largura máxima do card */
    height: 350px;       /* altura automática conforme conteúdo */
    padding: 1.5rem;   
}
/* Mobile – até 768px */
@media (max-width: 768px) {
    .pricing-card {
        max-width: 90%;           /* ocupa a maior parte da tela */
        margin: 1rem auto;        /* centraliza horizontalmente */
        height: auto;             /* deixa a altura se ajustar ao conteúdo */
        padding: 1rem;            /* espaçamento interno menor */
    }
}

.pricing-card .btn.btn-primary {
    margin: 1rem 0;
    position: absolute;
    bottom: 0;    
    text-align: center;           /* distancia do fundo do container */
    left: 50%;               /* centraliza horizontalmente */
    transform: translateX(-50%);
    width: calc(100% - 4rem); /* largura total menos o padding */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(254, 255, 255, 0.336);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card.popular .popular-badge {
    display: flex;
}


.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: rgba(255, 255, 255, 0.253);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.popular-badge i {
    margin-right: 0.5rem;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray-light);
}

.pricing-card.popular .pricing-header {
    background-color: rgba(59, 130, 246, 0.05);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: flex-start;
    color: white;
    justify-content: center;
}

.pricing-price span {
    font-size: 1rem;
    color: white;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.pricing-period {
    color: white;
    font-size: 0.875rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    color: white;
}



.pricing-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    color: white;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgb(0, 255, 94);
}

.pricing-features li.disabled {
    color: var(--gray);
}

.pricing-features li.disabled::before {
    content: '\f00d';
    color: var(--error);
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* CTA Section */
.cta {
    background: var(--gradient);
    color: var(--lighter);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    animation: cta-shine 8s infinite linear;
}

@keyframes cta-shine {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }

    100% {
        transform: rotate(30deg) translateX(100%);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.225rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
/* Mobile – até 768px */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 1.8rem; /* menor que no desktop */
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1rem;   /* mais legível */
        margin-bottom: 1.5rem;
        line-height: 1.5;  /* espaçamento entre linhas */
    }

 
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.btn-primary {

    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
     position: relative;
    text-decoration: none;
    transition: background 0.3s ease;
    
}

.btn.btn-primary:hover {
    background-color: var(--secondary-color)
}

.btn-white {
    background-color: var(--lighter);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background-color: var(--lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.btn-transparent {
    background-color: transparent;
    color: var(--lighter);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Rodapé */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    display: flex;          /* coloca ícone e texto na mesma linha */
    align-items: center;    /* centraliza verticalmente */
    gap: 10px;              /* espaço entre ícone e texto */
    margin-bottom: 15px;
    white-space: nowrap;    /* evita quebra de linha */
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--text-light);
    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: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito Slow Motion ao Rolar */
[data-anime] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-anime="left"] {
    transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
    transform: translate3d(0, -50px, 0);
}

[data-anime="bottom"] {
    transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* 3D Animation */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        color: var(--text-light);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn {
        padding: 10px 25px;
    }

    .whatsapp-btn,
    .rating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 90px;
    }

    .rating-modal {
        width: 250px;
        left: 15px;
        bottom: 80px;
    }

    .contact-form {
        padding: 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    /* alinha verticalmente */
    gap: 10px;
    /* espaço entre logo e texto */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.logo-img {
    width: 60px;
    /* ou qualquer tamanho que quiser */
    height: 60px;
    /* mantém proporção */
    /* mesma largura p/ manter redondo */
    border-radius: 80%;
    object-fit: cover;
}

.logo-img:hover {
    transform: rotate(20deg);
    transition: transform 0.5s ease;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.store-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    text-decoration: none;
    color: #0a0706; 
}

.store-icons a:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.store-icons a p {
    text-decoration: none;
    margin-top: 5px; /* opcional: espaço entre ícone e texto */
    color: #fcfcfc;  /* ou herdar do link */
}


.store-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    color: #f7f7f7;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color:white;
}

.store-item p {
    margin-top: 5px;
    color: #ffffff;
    text-decoration: none; /* garante sem sublinhado */
}


.mockups {
  padding: 100px 20px;
  
  text-align: center;
}
@media (max-width: 768px) {
  .mockups {
    margin-top: -20%;
      /* menos padding pra caber melhor */
      /* reseta no mobile */
    text-align: center;   /* mantém centralizado */
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fffbfb;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 50px;
}

.swiper {
  width: 100%;
  max-width: 1000px;
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 40px;
  padding: 15px;
  position: relative;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.phone::before {
  content: "";
  width: 60px;
  height: 25px;
  background: #111;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.screen {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  bottom: 0 !important;
}

/* Ajustes para mobile */
@media (max-width: 700px) {
  .mockups {
    padding: 60px 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .swiper {
    padding-bottom: 40px;
  }

  .phone {
    width: 180px; /* menor que no desktop */
    height: 370px; /* menor que no desktop */
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.25);
  }

  .phone::before {
    width: 40px;
    height: 20px;
  }

  .screen {
    border-radius: 20px;
  }

  .screen img {
    object-fit: cover;
  }

  .swiper-slide {
    margin: 0 10px; /* deixa espaçamento entre os slides */
  }
}
