.elementor-190 .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-190 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-50: #fff7ef;
    --teal-100: #e9d0b6;
    --teal-200: #745e46;
    --teal-600: #ac9a88;
    --teal-700: #836d55;
    --teal-800: #634a30;
    --blue-50: #eff6ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #634c31;
    --gray-800: #6b553c;
    --gray-900: #574430;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--teal-600);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-700);
}

.btn-white {
    background: white;
    color: var(--teal-700);
}

.btn-white:hover {
    background: var(--teal-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand-title {
    color: var(--teal-700);
    font-weight: 600;
    font-size: 1.125rem;
}

.brand-subtitle {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.header-phone i {
    width: 1rem;
    height: 1rem;
}

.header-mobile {
    display: block;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
    .header-mobile {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--teal-50) 0%, white 50%, var(--blue-50) 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
}

.hero-location {
    color: var(--teal-700);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-badge {
        display: block;
        position: absolute;
        bottom: -1.5rem;
        left: -1.5rem;
        background: var(--teal-600);
        color: white;
        padding: 1.5rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-width: 20rem;
    }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

.section-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--teal-600);
    margin: 2rem auto;
}

.section-subtitle {
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    margin-bottom: 3rem;
}

.highlight-box {
    background: var(--teal-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--teal-600);
    margin: 1.5rem 0;
}

.highlight-title {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.specializations-grid {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.specializations-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--gray-700);
}

.checkmark {
    color: var(--teal-600);
    font-weight: 700;
}

@media (min-width: 768px) {
    .specializations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.credentials-grid {
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credential-card {
    border: 2px solid var(--teal-100);
    border-radius: 0.5rem;
    padding: 1.5rem;

    display: flex;              /* vira um flex container */
    align-items: center;        /* centraliza verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    text-align: center;
}

.credential-card p {
    margin: 0;                  /* tira a margem padrão do <p> */
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For Whom Section */
.for-whom {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--teal-50) 100%);
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.card {
    background: white;
    border: 1px solid var(--teal-100);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.conditions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    margin-top: 1rem;
}

.conditions-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--teal-600);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.how-grid {
    display: grid;
    gap: 3em;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-card {
    background: white;
    border: 1px solid var(--teal-100);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

.step-card:hover {
    border-color: var(--teal-300);
}

/* só o número em formato de bolinha */
.step-number {
    flex-shrink: 0;
    background: var(--teal-600);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-content {
    flex: 1;
}

.step-content-02 p {
    font-weight: 500;
}

.step-content h3 {
    margin: 0 0 0.5rem;  /* remove o espaço em cima */
}

.step-list {
    list-style: none;
    margin-top: 0.75rem;
}

.step-list li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.how-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.how-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }
    .how-image {
        order: 2;
    }
}

/* Locations Section */
.locations {
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--blue-50) 100%);
}

.locations-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto 3rem;
}

.location-card {
    background: white;
    border: 1px solid var(--teal-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-icon {
    background: var(--teal-100);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.location-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--teal-700);
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--teal-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    background: var(--teal-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--teal-700);
}

.contact-label {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--teal-600);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--teal-700);
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-800) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1758691463198-dc663b8a64e4?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtZWRpY2FsJTIwY29uc3VsdGF0aW9uJTIwb2ZmaWNlfGVufDF8fHx8MTc2MzE0MjgzM3ww&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
}

.cta-lead {
    font-size: 1.25rem;
    color: var(--teal-50);
    margin-bottom: 2rem;
}

.cta-text {
    color: var(--teal-50);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.benefit-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--teal-200);
    flex-shrink: 0;
}

.benefit-item span {
    color: white;
}

.cta-note {
    color: var(--teal-100);
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--teal-500);
}

.footer-title {
    color: white;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 0.875rem;
}

.footer-about p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-contact h3,
.footer-locations h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    width: 1rem;
    height: 1rem;
    color: var(--teal-500);
}

.footer-location {
    font-size: 0.875rem;
    /* se não tiver ícone do lado, nem precisa de flex aqui */
    display: block;
}

.footer-location > div {
    display: flex;
    flex-direction: column;  /* um parágrafo abaixo do outro */
    gap: 0.5rem;            /* espaçamento vertical opcional */
}

.footer-location p {
    margin: 0;               /* ajuste se quiser mais/menos espaço */
}


.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utilities */
@media (max-width: 767px) {
    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .conditions-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
    list-style: none;
    margin-top: 1rem;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a6fb1a *//* 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 */