/* Estilo geral do corpo da página */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #d1d5db; /* Cor equivalente ao text-gray-200 */
    /* background: linear-gradient(180deg, #1f1f1f 0%, #000000 100%); */
    background: linear-gradient(180deg, #1e3a8a 0%, #111827 100%);
}

/* Estilo do cabeçalho fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1e3a8a; /* Cor equivalente ao bg-blue-900 */
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 50;
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    max-width: 128px;
}
header a {
    background-color: #ec4899; /* Cor equivalente ao bg-pink-500 */
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
header a:hover {
    background-color: #db2777; /* Cor equivalente ao hover:bg-pink-600 */
    transform: scale(1.05);
}

/* Estilo da seção Hero */
.hero-bg {
    /* background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1920&q=80'); */
    background-image: url('Hero_bg.webp');
    background-size:cover;
    background-position: center;
    background-color: rgba(0, 20, 40, 0.75);
    background-blend-mode: overlay;
    padding: 8rem 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 2.25rem; /* Equivalente a text-4xl */
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.125rem; /* Equivalente a text-lg */
    margin-bottom: 2rem;
}
.hero-content a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-content a:hover {
    background-color: #db2777;
    transform: scale(1.05);
}
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem; /* Equivalente a md:text-6xl */
    }
    .hero-content p {
        font-size: 1.25rem; /* Equivalente a md:text-xl */
    }
}

/* Seção de Planos */
.plans {
    padding: 5rem 1rem;
    background-color: #1f2937;
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(0, 91, 169, 0.2), rgba(253, 75, 199, 0.2)); */
    z-index: 0;
}

.plans .container {
    position: relative;
    z-index: 1;
}

.plans h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plan-card {
    background-color: #111827;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
    border: 2px solid #ec4899;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ec4899;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: bold;
}

.plan-cta {
    margin-top: auto;
}

.plan-cta a {
    display: block;
    background-color: #ec4899;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.plan-cta a:hover {
    background-color: #db2777;
}

/* Seção CTA Intermediária */
.cta-section {
    padding: 4rem 1rem;
    background-color: #1e3a8a;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-section a:hover {
    background-color: #db2777;
    transform: scale(1.05);
}

/* Seção de Diferenciais */
.differentiators {
    padding: 5rem 1rem;
    background-color: #111827;
    text-align: center;
}

.differentiators h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diff-card {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 0.5rem;
}

.diff-icon {
    font-size: 3rem;
    color: #ec4899;
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.diff-card p {
    color: #d1d5db;
}

/* Seção de Resultados */
.results {
    padding: 5rem 1rem;
    background: linear-gradient(45deg, #000000, rgb(0 20 40 / 90%)), url(https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.results h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.result-text {
    color: #ffffff;
    font-size: 1.125rem;
}


/* Estilo da seção de Processo */
.process {
    padding: 5rem 1rem;
    /* background: url('https://images.pexels.com/photos/139387/pexels-photo-139387.jpeg') no-repeat center center fixed; */
    background: url('https://images.pexels.com/photos/139387/pexels-photo-139387.jpeg'), linear-gradient(45deg, #000000, rgb(0 20 40 / 90%));
    /* background: url('https://images.pexels.com/photos/139387/pexels-photo-139387.jpeg') no-repeat center; */
    background-size: cover;
    background-position: center;
    /* background-color: rgba(0, 20, 40, 0.9); */
    background-blend-mode: overlay;
    padding: 8rem 1rem;
    color: #1f2937; /* Equivalente a text-gray-800 */
}
.process .container {
    max-width: 1200px;
    margin: 0 auto;
}
.process h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #ec4899; /* Equivalente a text-pink-500 */
    margin-bottom: 3rem;
}
.process .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.process img{
    width: 80%;
    height: 8rem;
    object-fit: scale-down;
    margin-bottom: 2px;
}
@media (min-width: 768px) {
    .process .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.process .card {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    
}
.process .card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ec4899; /* Equivalente a text-blue-900 */
    margin-bottom: 1rem;
}
.process .card p {
    color: #ffffff; /* Equivalente a text-gray-600 */
}

/* Seção CTA Pos seção de processo */
.final-cta {
    padding: 5rem 1rem;
    background-color: #111827;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.final-cta a:hover {
    background-color: #db2777;
    transform: scale(1.05);
}

/* Barra de CTA Fixa
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 58, 138, 0.95);
    padding: 1rem;
    text-align: center;
    z-index: 40;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fixed-cta-bar p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.fixed-cta-bar a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.fixed-cta-bar a:hover {
    background-color: #db2777;
} */

/* Estilo da seção Sobre */
.about {
    padding: 5rem 1rem;
    background-color: #111827; /* Equivalente a bg-gray-900 */
    background-size: 20px 20px;
    position: relative;
    text-align: center;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 20, 40, 0.99), #1e3a8a);
    z-index: 0;
}
.about .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}
.about img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.about p {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.about a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.about a:hover {
    background-color: #db2777;
    transform: scale(1.05);
}

/* Estilo da seção Missão, Visão e Valores */
.mvv {
    padding: 5rem 1rem;
    /* background-color: #1e3a8a; Equivalente a bg-blue-900 */
    background-size: 20px 20px;
}
.mvv .container {
    max-width: 1200px;
    margin: 0 auto;
}
.mvv h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.mvv .grid img{
    width: 50%;
    object-fit: scale-down;
}

.mvv .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .mvv .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.mvv .card {
    text-align: center;
    padding: 1.5rem;
    /* background-color: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.mvv .card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}
.mvv .card p {
    color: #d1d5db; /* Equivalente a text-gray-200 */
}

/* Estilo da seção de Confiança e FAQ */
.trust {
    padding: 5rem 1rem;
    /* background-color: #ffffff; */
    color: #1f2937; /* Equivalente a text-gray-800 */
}
.trust .container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.trust h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ec4899; /* Equivalente a text-blue-900 */
    margin-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align:left;
    padding: 5%;
    align-items: start;
}
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.trust p {
    font-size: 1.125rem;
    color: #ffffff; /* Equivalente a text-gray-600 */
    margin-bottom: 1.5rem;
}
.trust h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.trust img{
    width: 256px;
    object-fit: scale-down;
}

/* Área de perguntas frequentes */
.faq-container {
    text-align: left;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1rem;
    color: #f3f4f6;
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    color: #d1d5db;
    padding-top: 0.5rem;
    font-size: 0.9rem;
}

.faq-answer.show {
    display: block;
}
.trust a {
    background-color: #ec4899;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.trust a:hover {
    background-color: #db2777;
    transform: scale(1.05);
}

/* Estilo do rodapé */
footer {
    padding: 3rem 1rem;
    /* background-color: #1e3a8a; Equivalente a bg-blue-900 */
    color: #ffffff;
    text-align: center;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
footer p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
footer a {
    color: #ec4899; /* Equivalente a hover:text-pink-500 */
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: bold;
}
footer a:hover {
    color: #9ca3af; /* Equivalente a text-gray-400 */
}

/* Estilo do botão fixo de WhatsApp */
.whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        /* background-color: #ec4899; */
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 100;
        transition: all 0.3s ease;
        text-decoration: none;
}
.whatsapp-button:hover {
        transform: scale(1.1);
        background-color: #128C7E;
        /* background-color: #db2777; */
}
.whatsapp-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Animações */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}
.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}
.slide-in-left[style*="0.2s"] {
    animation-delay: 0.2s;
}
.slide-in-left[style*="0.4s"] {
    animation-delay: 0.4s;
}
.fade-in-up[style*="0.2s"] {
    animation-delay: 0.2s;
}
.fade-in-up[style*="0.4s"] {
    animation-delay: 0.4s;
}