/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2D1B69;
    --secondary: #1E1E1E;
    --accent: #E91E63;
    --dark: #1E1E1E;
    --light: #ffffff;
    --pink: #E91E63;
}

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

/* Header Styles */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-gestor, .btn-atendente {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-atendente {
    background: var(--pink);
    color: var(--light);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light) 0%, #f5f5f5 100%);
    position: relative;
}

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

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    margin-bottom: 2rem;
}

.hero-text .highlight {
    color: var(--pink);
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 4rem;
    color: var(--dark);
    line-height: 1.1;
    font-weight: 600;
}

.description {
    margin-bottom: 2.5rem;
}

.description p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.mercados-alvo {
    margin-bottom: 2.5rem;
}

.mercados-alvo h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mercados-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mercado {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f5;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
}

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

.mercado i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 0.8rem;
}

.mercado span {
    font-weight: 500;
    color: var(--dark);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--pink);
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

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

.btn-secondary:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-2px);
}

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

.circle-bg {
    position: relative;
    width: 450px;
    height: 450px;
    background: #f8f5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}

.diamond {
    width: 250px; /* Aumentar ligeiramente */
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, #3d2b79 100%); /* Adicionar gradiente */
    transform: rotate(45deg);
    position: relative;
    margin-top: -20px; /* Ajustar margem */
    margin-left: -10px; /* Ajustar margem */
    box-shadow: 0 8px 32px rgba(45, 27, 105, 0.2); /* Adicionar sombra */
    transition: transform 0.3s ease; /* Adicionar transição */
}

.arrow {
    position: absolute;
    bottom: -20px; /* Ajustar posição */
    right: -20px; /* Ajustar posição */
    width: 70px; /* Ajustar tamanho */
    height: 70px; /* Ajustar tamanho */
    border-right: 4px solid #E91E63; /* Ajustar borda */
    border-bottom: 4px solid #E91E63; /* Ajustar borda */
    border-bottom-right-radius: 18px; /* Ajustar borda */
    transform: rotate(-45deg);
    transition: all 0.3s ease; /* Adicionar transição */
}

.badge {
    position: absolute;
    top: 40px; /* Ajustar posição */
    right: -30px; /* Ajustar posição */
    background: linear-gradient(135deg, #E91E63 0%, #ff4081 100%); /* Adicionar gradiente */
    color: var(--light);
    padding: 1rem 2rem; /* Ajustar padding */
    border-radius: 30px;
    font-size: 1rem; /* Ajustar font-size */
    font-weight: 600; /* Ajustar font-weight */
    transform: rotate(8deg);
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.25); /* Ajustar sombra */
    z-index: 1;
}

/* Produtos Section */
.produtos {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.produtos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.produtos h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark);
}

.produtos h2 span {
    color: var(--pink);
}

.produtos-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.produtos-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.produtos-container-details {
    display: flow;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 100px; /* Ajuste este valor conforme a altura do seu cabeçalho */
    margin-top: -100px; /* Compensa o padding para manter o alinhamento correto */
}


.produto {
    background: var(--light);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;    
}

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

.produto-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.produto-icon_2 {
    display: ruby;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    justify-content: space-around;
}

.produto-button {
    text-align: center;
}

.produto h3 {
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.produto-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.produto-desc-2 {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.produto-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.produto-funcionalidades, .produto-vantagens {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.produto-funcionalidades h4, .produto-vantagens h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.produto-funcionalidades ul, .produto-vantagens ul {
    list-style: none;
}

.produto-funcionalidades li, .produto-vantagens li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.produto-funcionalidades li:before, .produto-vantagens li:before {
    content: "•";
    color: var(--pink);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.produtos-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .produtos-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .produto-details {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .produtos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gestão Section */
.gestao {
    background: var(--dark);
    padding: 4rem 0;
    text-align: center;
}

.gestao-content h2 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.gestao-content h2 span {
    color: var(--pink);
}

/* Como Funciona Section */
.como-funciona {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.como-funciona h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.como-funciona h2 span {
    color: var(--pink);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #f5f5f5;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.step h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.step ul {
    list-style: none;
}

.step ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.step ul li:before {
    content: "•";
    color: var(--pink);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
}

/* Benefícios Section */
.beneficios {
    padding: 5rem 2rem;
    background: var(--light);
}

.beneficios-content {
    max-width: 1200px;
    margin: 0 auto;
}

.beneficios h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.beneficios .highlight {
    color: var(--pink);
    font-size: 1.5rem;
}

.features {
    margin: 3rem 0;
}

.feature {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.feature i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature ul {
    list-style: none;
    margin-top: 1rem;
}

.feature ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature ul li:before {
    content: "•";
    color: var(--pink);
    position: absolute;
    left: 0;
}

.beneficios-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.beneficio {
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.beneficio i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

/* Por Que Section */
.porque {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

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

.video-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(45, 27, 105, 0.1);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.video-icon svg {
    width: 100%;
    height: 100%;
}

/* SVG Icon Styles */
.animated-video-icon {
    color: currentColor;
    vertical-align: middle;
}

.beneficio .animated-video-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--pink);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature .animated-video-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--pink);
    display: block;
}

.logo .animated-video-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .animated-video-icon {
    width: 40px;
    height: 40px;
}

.btn-specialist .animated-video-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    color: var(--light);
}

.btn-specialist:hover .animated-video-icon {
    transform: scale(1.1);
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.stat .stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--pink);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.stat .stat-icon .camera-body {
    fill: var(--pink);
}

.stat .stat-icon .lens,
.stat .stat-icon .signal {
    stroke: var(--light);
    stroke-width: 1.5;
}

.stat h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat p {
    color: #666;
    font-size: 1rem;
}

/* Dúvidas Section */
.duvidas {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.faq-list {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    font-weight: 500;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--pink);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background: #f9f9f9;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: left;
}

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

.faq-answer p {
    margin-bottom: 1rem;
    color: #555;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 2rem 2rem;
    position: relative;
}

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

.footer-content_2 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 2rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2.5rem;
}

.footer-sections {
    /* display: grid; */
    display: none    ;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.barra-horizontal {
    display: none    ;
    
    width: 100%; /* Largura da barra (pode ser ajustada) */
    height: 1px; /* Altura da barra */
    background-color: #504e4e; /* Cor da barra */
    margin: 20px 0; /* Espaçamento acima e abaixo da barra */
}

.footer-section h3 {
    color: var(--pink);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Adjusted footer layout for the three elements side by side */
.footer-content_2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 2rem;
}

.footer-acertpix {
    text-align: center;
    width: 33.33%;
    order: 1;
    border-top: none;
    padding: 0 1rem;
}

.footer-social {
    text-align: center;
    width: 33.33%;
    order: 2;
    padding: 0 1rem;
}

.footer-contact {
    text-align: center;
    width: 33.33%;
    order: 3;
    margin-top: 0;
    padding: 0 1rem;
}

.acertpix-logo {
    max-width: 200px;
    height: auto;
    margin: 1.5rem auto;
    padding: 1rem;
    display: block;
}

.acertpix-slogan {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--light);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--pink);
}

.btn-specialist {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--pink);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-specialist:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social, .footer-acertpix, .footer-contact {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        order: 2;
    }
    
    .footer-contact {
        order: 3;
    }
    
    .footer-acertpix {
        order: 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text .highlight {
        font-size: 1.5rem;
    }

    .description p {
        font-size: 1.1rem;
    }
    
    .mercados-container {
        justify-content: center;
    }
    
    .mercado {
        min-width: 100px;
        padding: 1rem;
    }
    
    .mercados-alvo h3 {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .circle-bg {
        width: 350px;
        height: 350px;
        margin: 2rem auto;
    }

    .diamond {
        width: 200px;
        height: 200px;
        margin-top: -10px;
    }

    .arrow {
        bottom: -30px;
        right: -30px;
        width: 70px;
        height: 70px;
    }

    .badge {
        top: 20px;
        right: -40px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .porque-content {
        grid-template-columns: 1fr;
    }
    
    .porque-image {
        order: -1;
    }
    
    .btn-specialist {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .video-icon {
        width: 300px;
        height: 300px;
        font-size: 10rem;
    }
    
    .footer-acertpix {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .acertpix-logo {
        max-width: 150px;
    }
    
    .acertpix-slogan {
        font-size: 1rem;
    }
}
