:root {
    --primary-color: #FF6B00;
    --secondary-color: #082142;
    --accent-color: #25D366;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --light-background: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --error-color: #dc3545;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.primary-button {
    background: var(--primary-color);
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.primary-button:hover {
    background: var(--secondary-color);
    color: white !important;
}

.secondary-button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
}

/* Sobre */
.about {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

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

.stat .label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.skills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-background);
    border-radius: 10px;
    transition: var(--transition);
}

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

.skill-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-item h3 {
    margin-bottom: 1rem;
}

.skill-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Benefícios */
.benefits {
    padding: 3rem 1rem;
    background-color: var(--light-background);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-card:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-card h3,
.benefit-card p {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover i {
    color: var(--secondary-color);
}

/* Serviços */
.services {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--light-background);
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    transition: var(--transition);
}

.service-features i {
    font-size: 1rem;
    color: var(--success-color);
    margin: 0;
    transition: var(--transition);
}

.service-card:hover .service-features i {
    color: white !important;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    padding: 5rem 1rem;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .primary-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .primary-button:hover {
    background-color: var(--light-background);
}

/* Depoimentos */
.testimonials {
    padding: 3rem 1rem;
    background-color: var(--light-background);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--light-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Portfólio */
.portfolio {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Estatísticas */
.stats {
    padding: 3rem 1rem;
    background-color: var(--primary-color);
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
}

/* Processo */
.process {
    padding: 3rem 1rem;
    background-color: var(--light-background);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Stack Tecnológico */
.tech-stack {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.tech-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    text-align: center;
}

.tech-item {
    padding: 2rem;
    background-color: var(--light-background);
    border-radius: 10px;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background-color: var(--primary-color);
}

.tech-item:hover * {
    color: white !important;
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item span {
    display: block;
    color: var(--light-text);
}

/* Garantia */
.guarantee {
    padding: 3rem 1rem;
    background-color: var(--light-background);
}

.guarantee-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-feature i {
    color: var(--success-color);
}

.response-time {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.response-time i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-time h3 {
    margin-bottom: 1rem;
}

.response-time .time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.response-time .subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--light-background);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--border-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--light-text);
}

/* Contato */
.contact {
    padding: 3rem 1rem;
    background-color: var(--light-background);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 2rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

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

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Aplicando animações */
.hero-content {
    animation: fadeIn 1s ease-out;
}

.service-card {
    animation: scaleIn 0.5s ease-out;
}

.about-content {
    animation: slideInLeft 1s ease-out;
}

.process-step {
    animation: slideInRight 0.5s ease-out;
}

.testimonial-card {
    animation: fadeIn 0.5s ease-out;
}

.faq-item {
    animation: scaleIn 0.5s ease-out;
}

.contact-form {
    animation: fadeIn 1s ease-out;
}

/* Responsividade */
@media (max-width: 1200px) {
    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .process-container,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .guarantee-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-logo-img {
        max-width: 150px;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .about-content,
    .guarantee-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .process-container,
    .tech-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .pricing-info {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat .number {
        font-size: 2rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .primary-button,
    .secondary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .benefit-card,
    .tech-item {
        padding: 1.5rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Ajustes para orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 2rem 3rem;
    }

    .hero-content {
        padding: 2rem 0;
    }
}

/* Ajustes para tablets em modo retrato */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustes para tablets em modo paisagem */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero h1 {
        font-size: 3rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

/* Efeito Parallax */
.hero {
    background-attachment: fixed;
}

/* Efeitos de Hover */
.service-card:hover i,
.benefit-card:hover i,
.tech-item:hover i {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Loading Effect */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Efeitos de Transição */
button, a, .service-card, .benefit-card, .tech-item, .impulsione-item, .primary-button, .secondary-button, .whatsapp-btn-impulsione {
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Efeitos de Foco */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Efeitos de Hover em Links */
a:hover {
    color: var(--primary-color);
}

/* Efeitos de Sombra */
.service-card:hover,
.benefit-card:hover,
.tech-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Efeitos de Rotação */
.tech-item:hover i {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

/* Efeitos de Escala */
.social-links a:hover {
    transform: scale(1.2);
}

/* Efeitos de Opacidade */
.faq-question:hover {
    opacity: 0.9;
}

/* Efeitos de Borda */
.service-card,
.benefit-card,
.tech-item {
    border: 1px solid transparent;
}

.service-card:hover,
.benefit-card:hover,
.tech-item:hover {
    border-color: var(--primary-color);
}

/* Efeitos de Gradiente */
.primary-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.primary-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Efeitos de Texto */
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Efeitos de Imagem */
.testimonial-author img {
    transition: transform 0.3s ease;
}

.testimonial-author img:hover {
    transform: scale(1.1);
}

/* Efeitos de Formulário */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Efeitos de Botão */
.submit-button:active {
    transform: translateY(1px);
}

/* Efeitos de Card */
.service-card,
.benefit-card,
.tech-item {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover,
.benefit-card:hover,
.tech-item:hover {
    transform: translateY(-5px) rotateX(5deg);
}

/* Efeitos de Ícone */
.skill-item i {
    transition: transform 0.3s ease;
}

.skill-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Efeitos de Número */
.stat .number {
    transition: transform 0.3s ease;
}

.stat:hover .number {
    transform: scale(1.1);
}

/* Efeitos de Processo */
.process-step::after {
    transition: width 0.3s ease;
}

.process-step:hover::after {
    width: 3rem;
}

/* Efeitos de FAQ */
.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Efeitos de Contato */
.contact-form {
    transition: transform 0.3s ease;
}

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

/* Efeitos de Footer */
.social-links a {
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-links a:hover::after {
    transform: scaleX(1);
}

/* Efeitos de WhatsApp */
.whatsapp-button {
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Efeitos de Scroll */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Efeitos de Loading */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.loading {
    animation: pulse 1s infinite;
}

/* Efeitos de Hover em Links do Menu */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Efeitos de Hover em Cards */
.service-card,
.benefit-card,
.tech-item {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.tech-item::before {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}

/* Efeitos de Hover em Botões */
.primary-button,
.secondary-button {
    position: relative;
    overflow: hidden;
}

.primary-button::after,
.secondary-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.primary-button:hover::after,
.secondary-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Efeitos de Hover em Formulários */
.form-group input,
.form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

/* Efeitos de Hover em Ícones */
.skill-item i,
.benefit-card i,
.service-card i {
    transition: all 0.3s ease;
}

.skill-item:hover i,
.benefit-card:hover i,
.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Efeitos de Hover em Números */
.stat .number {
    transition: all 0.3s ease;
}

.stat:hover .number {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Efeitos de Hover em Processo */
.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Efeitos de Hover em FAQ */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Efeitos de Hover em Contato */
.contact-form {
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Efeitos de Hover em Footer */
.social-links a {
    transition: all 0.3s ease;
}

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

/* Efeitos de Hover em WhatsApp */
.whatsapp-button {
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Efeitos de Scroll */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Efeitos de Loading */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading::after {
    animation: spin 1s linear infinite;
}

/* Efeitos de Transição */
* {
    transition: all 0.3s ease;
}

/* Efeitos de Foco */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Efeitos de Hover */
*:hover {
    transition: all 0.3s ease;
}

/* Efeitos de Ativo */
*:active {
    transform: none !important;
}

/* Efeitos de Desabilitado */
*:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Efeitos de Seleção */
::selection {
    background-color: var(--primary-color);
    color: white;
}

/* Efeitos de Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Efeitos de Placeholder */
::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

/* Preços */
.pricing {
    padding: 3rem 1rem;
    background-color: var(--background-color);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-info {
    background-color: var(--light-background);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.pricing-info p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.pricing-info .primary-button {
    display: inline-flex;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-info {
        padding: 2rem;
    }
}

/* Removendo efeitos indesejados */
* {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Ajustando seleção de texto */
p, h1, h2, h3, h4, h5, h6, span, a {
    user-select: text;
}

.impulsione {
    padding: 3rem 1rem;
    background: var(--light-background);
    text-align: center;
}
.impulsione h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.impulsione-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.impulsione-item {
    background: #fff;
    border-radius: 22px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 270px;
    transition: box-shadow 0.3s, background 0.3s, transform 0.3s;
    margin-bottom: 0.5rem;
}
.impulsione-item:hover {
    background: #f0f0f0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-7px) scale(1.03);
}
.impulsione-icon {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: color 0.3s;
}
.impulsione-item:hover .impulsione-icon {
    color: var(--secondary-color);
}
.impulsione-item h3 {
    font-size: 1.22rem;
    margin-bottom: 1.7rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.whatsapp-btn-impulsione {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: #fff !important;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1.13rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.10);
    margin-top: auto;
    margin-bottom: 0.2rem;
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn-impulsione i {
    font-size: 1.5rem;
}
.impulsione-item:hover .whatsapp-btn-impulsione {
    background: #1ebe5d;
    color: #fff !important;
    transform: scale(1.06);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.18);
}
@media (max-width: 900px) {
    .impulsione-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .impulsione-grid {
        grid-template-columns: 1fr;
    }
    .impulsione-item {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
    }
    .skills {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about {
        padding: 2rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .about-text p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        margin: 7px;
    }
    .skills {
        gap: 0.7rem;
    }
    .skill-item {
        padding: 1.2rem 0.5rem;
    }
    .skill-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .skill-item h3 {
        font-size: 1.05rem !important;
    }
    .skill-item p {
        font-size: 0.9rem;
    }
}

.contact-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.required-info {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95em;
}

.required {
    color: var(--primary-color);
    font-size: 1em;
    margin-left: 2px;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.field-error {
    color: var(--error-color);
    font-size: 0.95em;
    margin-top: 0.2rem;
    display: block;
    min-height: 1.2em;
}

.contact-form .form-group {
    position: relative;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Removendo estilos do menu hamburguer e mobile */
.menu-toggle,
.hamburger,
.menu-overlay,
.nav-links {
    display: none !important;
}

/* Estilos para elementos persuasivos */

/* Badge de urgência */
.urgency-badge {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.urgency-badge i {
    color: #fff;
}

/* Banners de prova social */
.social-proof-banner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.social-proof-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Garantia banner */
.guarantee-banner {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 1.5rem 0;
    text-align: center;
    justify-content: center;
}

.guarantee-banner i {
    font-size: 1.5rem;
}

/* Countdown banner */
.countdown-banner {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    animation: pulse 2s infinite;
}

/* Botão pulsante */
.pulse-button {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.pulse-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pulse-button:hover::before {
    left: 100%;
}

/* Botão urgente */
.urgent-button {
    background: linear-gradient(45deg, #dc3545, #fd7e14) !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.urgent-button:hover {
    background: linear-gradient(45deg, #c82333, #e55a00) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

/* Destaque de resultados */
.results-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.results-highlight h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.results-list {
    list-style: none;
    padding: 0;
}

.results-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.results-list i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Breakdown de investimento */
.investment-breakdown {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.investment-breakdown h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cost {
    color: var(--error-color);
    font-weight: 600;
}

.return {
    color: var(--success-color);
    font-weight: 600;
}

/* Oferta de urgência */
.urgency-offer {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.urgency-offer h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.total-value {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

/* Nota de urgência */
.urgency-note {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ffeaa7;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* CTA benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

/* Contact urgency */
.contact-urgency {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #fdcb6e;
}

.contact-urgency h3 {
    color: #856404;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-urgency ul {
    list-style: none;
    padding: 0;
}

.contact-urgency li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #856404;
}

.contact-urgency i {
    color: var(--success-color);
}

.total-bonus {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary-color);
    background: white;
    padding: 1rem;
    border-radius: 10px;
}

.contact-note {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsividade para elementos persuasivos */
@media (max-width: 768px) {
    .social-proof-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .breakdown-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .urgency-offer {
        padding: 1.5rem;
    }
    
    .investment-breakdown {
        padding: 1.5rem;
    }
    
    .results-highlight {
        padding: 1.5rem;
    }
    
    .contact-urgency {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .urgency-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .guarantee-banner {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .countdown-banner {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .urgency-offer h3 {
        font-size: 1.2rem;
    }
    
    .total-value {
        font-size: 1.1rem;
    }
}
