.elementor-1774 .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-1774 .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 {
    --primary-light: #F3B39E;
    --primary-dark: #C86034;
    --text-dark: #575E5D;
    --bg-light: #F7F7F7;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--text-dark);
    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(--primary-dark);
    color: white;
}

.btn-primary:hover {
    background: #a34e2a;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
}

.btn-white:hover {
    background: var(--bg-light);
}

.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(--primary-light);
    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;
}

.header-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 80px; /* ajuste aqui o tamanho da logo */
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .brand-logo {
        width: 120px;
    }
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.header-mobile {
    display: block;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
    .header-mobile {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 50%, var(--primary-light) 100%);
    padding: 2rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
  max-width: 560px;      /* evita ficar largo demais */
  margin-inline: auto;   /* centraliza esse bloco dentro da coluna */
}


.hero-title {
    font-size: 1.4rem;
}

.hero-location {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
}


.image-wrapper {
    width: 280px;        /* controla o tamanho real */
    max-width: 100%;
    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: 3rem 0;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    /* BLOCO ESQUERDA */
    .hero-content {
        max-width: 740px;      /* bloco do texto */
        width: 100%;
        margin-inline: auto;   /* centraliza dentro da coluna */
    }

    /* BLOCO DIREITA */
    .hero-image {
        width: 100%;
        left: 6rem;
        display: flex;
        justify-content: center;  /* centraliza o conjunto */
        position: relative;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-badge {
        display: block;
        position: absolute;
        bottom: -1rem;
        left: -1.5rem;
        background: var(--primary-dark);
        color: white;
        padding: 1.2rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-width: 20rem;
    }
    .hero-badge {
        font-size: 0.79rem;
    }
}

/* 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: 3rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--primary-dark);
    margin: 1rem auto;
}

.section-subtitle {
    color: var(--text-dark);
    max-width: 48rem;
    margin: 0 auto;
}

.crm-info {
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    margin-bottom: 3rem;
}

.highlight-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-dark);
    margin: 1.5rem 0;
}

.highlight-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.specializations-grid {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.specializations-grid li {
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.specializations-grid li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    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: 1px solid var(--primary-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.credential-card p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* For Whom Section */
.for-whom {
    background: var(--bg-light);
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.card {
    background: white;
    border: 1px solid var(--primary-light);
    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;
}

.card-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.how-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: white;
    border: 1px solid var(--primary-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--primary-dark);
}

.step-number-badge {
    background: var(--primary-dark);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.step-content {
    margin-left: 4rem;
}

.step-content p{
    font-size: 0.9rem;
}

.step-list {
    list-style: none;
    margin-top: 0.75rem;
}

.step-list p{
    font-size: 0.6rem;
}

.step-list li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.8rem;
}

.step-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
}

.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: 50%;
    display: block;
}

@media (min-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }
    .how-image {
        order: 2;
    }
}

/* Locations Section */
.locations {
    background: var(--bg-light);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
  align-items: stretch;
}

/* garante que os cards preencham bem */
.location-card {
  background: white;
  border: 1px solid var(--primary-light);
  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);
}

/* MAPA */
.map-embed {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--primary-light);
  margin-top: 0.75rem;
}

.map-embed iframe {
  width: 100%;
  height: 260px; /* desktop */
  border: 0;
  display: block;
}

.map-link {
  margin-top: 0.75rem;
  text-align: center;
}

.map-link a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.map-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 220px; /* mobile */
  }
}

.location-header {
    margin-bottom: 1rem;
}

.location-header h3 {
    color: var(--primary-dark);
    margin: 0;
}

.contact-card {
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--primary-light);
    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;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.crm-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-light);
}

.crm-footer p {
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #a34e2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtZWRpY2FsJTIwY29uc3VsdGF0aW9uJTIwd29tYW58ZW58MXx8fHwxNzYzMTEyMjA0fDA&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: white;
    margin-bottom: 2rem;
}

.cta-text {
    color: white;
    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: left;
}

.benefit-item span {
    color: white;
}

.cta-note {
    color: white;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utilities */
@media (max-width: 767px) {
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}/* 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 */