.elementor-2255 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-2255 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Seção Hero */
.hero-section {
    padding: 3rem 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.logo {
    max-width: 70px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: #374151;
}

.hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
}

.hero-image-wrapper {
    order: -1;
    min-height: 400px; /* ajuste conforme o layout */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hero-image {
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #244C40;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #53e4c0;
}

.btn-cta-light {
    background-color: #244C40;
    color: #ffffff;
}

.btn-cta-light:hover {
    background-color: #53e4c0;
}

.btn-cta-dark {
    background-color: #ffffff;
    color: #244C40;
}

.btn-cta-dark:hover {
    background-color: #244C40;
    color: #fff;
}

.btn-icon {
    flex-shrink: 0;
}

/* Seções CTA */
.cta-section {
    padding: 4rem 1rem;
}

.cta-light {
    background-color: #A9BEA5;
}

.cta-dark {
    background-color: #A9BEA5;
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-container a{
    margin: 0 auto;

}

.cta-light .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #244C40;
    line-height: 1.2;
}

.cta-dark .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.cta-light .cta-description {
    font-size: 1.125rem;
    color: rgba(36, 76, 64, 0.9);
}

.cta-dark .cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-light .cta-additional-text {
    font-size: 1rem;
    color: rgba(36, 76, 64, 0.8);
    padding-top: 1rem;
}

.cta-dark .cta-additional-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 1rem;
}

/* Seção Benefícios */
.benefits-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #244C40;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #A9BEA5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    color: #244C40;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #244C40;
}

.benefit-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.4;
}

.benefits-cta {
    text-align: center;
}

/* Seção Informações */
.info-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #244C40;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: #A9BEA5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon {
    color: #244C40;
}

.info-text {
    font-size: 1rem;
    color: #374151;
    padding-top: 0.5rem;
}

.info-highlight{
  grid-column: 1 / -1;
  margin: 1rem auto 0;
  max-width: 760px;
  width: 100%;

  background-color: rgba(169, 190, 165, 0.3);
  border-left: 4px solid #244C40;
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.info-highlight-text{
  text-align: center;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    gap: 1rem;
    align-items: center; /* 🔥 ISSO resolve */
}

.process-number {
    width: 3rem;
    height: 3rem;
    background-color: #244C40;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.325rem;
    flex-shrink: 0;
}

.process-content {
    display: flex;
    flex-direction: column;
}

.process-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #244C40;
}

.process-description {
    font-size: 1rem;
    color: #4b5563;
    margin-top: -16px;
}

/* Seção Sobre */
.about-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
}

.about-image {
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #244C40;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

/* Rodapé */
.footer {
    background-color: #ffffff;
    color: #374151;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    color: #244C40;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-title {
    font-weight: 600;
    color: #244C40;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1;
    color: #374151;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #374151;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #244C40;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #244C40;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #374151;
}

/* Media Queries - Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 2rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-image {
        height: 500px;
    }

    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.25rem;
    }

    .benefits-section {
        padding: 6rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .benefit-title {
        font-size: 1.5rem;
    }

    .info-section {
        padding: 6rem 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .info-title {
        font-size: 1.875rem;
    }

    .about-section {
        padding: 6rem 2rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-image {
        height: 500px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.125rem;
    }

    .footer {
        padding: 4rem 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .cta-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .about-title {
        font-size: 2.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a024d0 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */