/* Reset e configurações básicas */

/*
Theme Name: addev
Theme URI: http://localhost
Author: alexandre Domingues
Author URI: http://localhost
Description: Tema de teste no XAMPP
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-tema
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #0e073f;
}

.section-title span {
    color: #606cf5;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #606cf5;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #4a56d4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(96, 108, 245, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #606cf5;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #606cf5;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: rgba(96, 108, 245, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    color: #0e073f;
    text-decoration: none;
}

.logo img{
    width: 150px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #606cf5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #606cf5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp {
    background-color: #606cf5;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #4a56d4;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0e073f;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 200px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(96, 108, 245, 0.1) 0%, rgba(96, 108, 245, 0) 70%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    /* position: relative;
    z-index: 2; */
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0e073f;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-mockup {
    position: absolute;
    top: 200px;
    right: 5%;
    width: 50%;
    max-width: 700px;
    z-index: 1;
}

.mockup-desktop {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(14, 7, 63, 0.15);
    padding: 20px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}

.screen-content {
    width: 100%;
    height: 100%;
}

.mockup-header {
    width: 100%;
    height: 40px;
    background-color: #f0f2ff;
    border-radius: 6px;
    margin-bottom: 20px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mockup-item {
    height: 80px;
    background: linear-gradient(90deg, #f0f2ff 0%, #e6e9ff 100%);
    border-radius: 6px;
}

.mockup-base {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 30px;
    background-color: #e6e9ff;
    border-radius: 0 0 8px 8px;
}

.mockup-mobile {
    position: absolute;
    bottom: -100px;
    right: 10%;
    width: 180px;
    height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(14, 7, 63, 0.15);
    padding: 20px;
    z-index: 2;
}

.mockup-header-mobile {
    width: 100%;
    height: 30px;
    background-color: #f0f2ff;
    border-radius: 6px;
    margin-bottom: 15px;
}

.mockup-item-mobile {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #f0f2ff 0%, #e6e9ff 100%);
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Serviços */
.services {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 108, 245, 0.1);
    border-color: #606cf5;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(96, 108, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #606cf5;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #606cf5;
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0e073f;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Portfólio */
.portfolio {
    background-color: #f8f9ff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 108, 245, 0.15);
}

.portfolio-image {
    width: 100%;

}

.portfolio-item h3 {
    padding: 20px 20px 5px;
    font-size: 1.2rem;
    color: #0e073f;
}

.portfolio-item p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Benefícios */
.benefits {
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-item:hover {
    border-color: #606cf5;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(96, 108, 245, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #606cf5;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: #606cf5;
    color: white;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0e073f;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Como funciona */
.process {
    background-color: #f8f9ff;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background-color: rgba(96, 108, 245, 0.2);
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background-color: #606cf5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(96, 108, 245, 0.3);
}

.step-content {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0e073f;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* CTA Final */
.cta {
    background: linear-gradient(135deg, #0e073f 0%, #1a1499 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #0e073f;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-tech {
    margin-top: 20px;
}

.footer-tech span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-tags span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #606cf5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-slogan {
    margin-top: 10px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-mockup {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 60px;
    }
    
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-whatsapp {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        left: 40px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}