.elementor-242 .elementor-element.elementor-element-34163db{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-0fc3cc1 *//* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap");

/* Import Font Awesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* Variáveis CSS */
:root {
    --primary-blue: #003164;
    --secondary-blue: #004894;
    --accent-blue: #0e5aa6;
    --light-blue: #0078ff;
    --primary-orange: #f2832a;
    --secondary-orange: #ff8a00;
    --accent-orange: #ff9c01;
    --light-orange: #ffcd00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --red: #dc3545;
    --green: #28a745;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset e Estilo Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #343a40;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #003164;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 8px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Utilitários */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #003164;
    animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.bg-light-gray {
    background-color: #f8f9fa;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d99fc2 *//* Barra de Notificação Superior */
.cta-topo {
    background: linear-gradient(135deg, #004894 0%, #0e5aa6 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.cta-topo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cta-topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
/* Botão Plano Básico/Cliente */
.btn-cliente {
    display: inline-block;
    background: linear-gradient(135deg, #f2832a, #ff8a00);
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cliente:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cliente:focus {
    outline: 2px solid #003164;
    outline-offset: 2px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a538cf3 *//* Cabeçalho */
.header {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #003164;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #003164;
    font-family: 'Montserrat', sans-serif;
}

.logo:hover {
    transform: scale(1.05);
    color: #003164;
}

.logo i {
    font-size: 28px;
    color: #f2832a;
    transition: all 0.3s ease;
}

.logo:hover i {
    transform: rotate(10deg);
}

.nav {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav a:hover,
.nav a:focus {
    color: #003164;
    outline: none;
}

.nav a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f2832a;
    transition: all 0.3s ease;
}

.nav a:hover:before,
.nav a:focus:before {
    width: 100%;
}

.login-btn {
    background-color: #003164;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background-color: #0e5aa6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.login-btn:focus {
    outline: 2px solid #f2832a;
    outline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #f2832a;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f8f9fa;
    transform: scale(1.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #f2832a;
    outline-offset: 2px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-805f5c1 *//* Hero Section - Canteiro Central */

.hero-canteiro {
  background: linear-gradient(to bottom, #007bff, #3c9ff5);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container-hero {
  max-width: 900px;
  margin: 0 auto;
}

.hero-canteiro h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-canteiro .destaque {
  color: #ffcc00;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 8px;
  border-radius: 5px;
}

.subtitulo-hero {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f0f8ff;
  text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.botoes-hero {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Botão Plano Básico/Cliente */

.btn-hero-cliente {
  display: inline-block;
  background: linear-gradient(135deg, #f2832a, #ff8a00);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-hero-cliente:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero-cliente:focus {
    outline: 2px solid #003164;
    outline-offset: 2px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-pro {
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-pro:hover {
  background-color: #007bff;
  color: #fff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a5f7b18 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-68d080f *//* Como Funciona */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #003164;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2832a 0%, #ff8a00 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

.step-card h3 {
    margin-bottom: 15px;
    color: #003164;
    font-size: 1.25rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0116045 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5e4eb56 *//* Seções Gerais */
.section-padding {
    padding: 20px 0;
}

/* Seção de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.3s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f2832a, #ff8a00);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #f2832a;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #003164;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f514d37 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b91cdbb *//* Comparação */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card-com {
    background-color: #ffffff;
    padding: 30px;
    border: 2px solid #f2832a;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: varall 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.comparison-card-sem {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}


.comparison-card:nth-child(2) { animation-delay: 0.2s; }

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-card-com h3 {
    margin-bottom: 25px;
    color: #003164;
    font-size: 1.5rem;
    text-align: center;
}

.comparison-card-sem h3 {
    margin-bottom: 25px;
    color: #003164;
    font-size: 1.5rem;
    text-align: center;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #343a40;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background-color: #f8f9fa;
}

.comparison-item i.fas.fa-check {
    color: #28a745;
    font-size: 1.125rem;
}

.comparison-item i.fas.fa-times {
    color: #dc3545;
    font-size: 1.125rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-46dfd94 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-83ecd10 *//* Reset e variáveis */
:root {
  --primary: #0066cc;
  --accent: #ff6b00;
  --dark: #003366;
  --light: #f8f9fa;
  --gray: #6c757d;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container principal */
.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Slider horizontal */
.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  margin: 0 -1rem;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

/* Cartões de depoimento */
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  scroll-snap-align: start;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(0, 102, 204, 0.1);
  font-size: 4rem;
  z-index: 0;
}

/* Cabeçalho do depoimento */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Imagem do cliente */
.client-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-right: 1rem;
}

.testimonial-card:hover .client-avatar {
  transform: scale(1.05);
  border-color: var(--accent);
}

/* Informações do cliente */
.client-info h4 {
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.location i {
  margin-right: 5px;
  color: var(--accent);
}

.rating {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Depoimento em destaque */
blockquote {
  font-style: italic;
  color: #1e293b;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.7;
  z-index: 2;
  font-size: 1.05rem;
}

blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Botões de navegação */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* Indicadores do slider */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 2rem 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

/* Call to Action */
.cta-container {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(255,107,0,0.05) 100%);
  border-radius: 1rem;
}

.cta-container p {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  
  .testimonials-container {
    padding: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    flex: 0 0 90%;
    margin: 0 5%;
  }
  
  .testimonial-nav {
    top: 40%;
  }
  
  .slider-dots {
    margin: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    flex: 0 0 95%;
    margin: 0 2.5%;
    padding: 1.5rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .client-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .cta-container {
    padding: 1.5rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-21e976a *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc4a36b */:root {
    --primary: #0066cc;
    --secondary: #00aaff;
    --accent: #ff6b00;
    --accent-light: #ff8a3d;
    --dark: #003366;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eaeaea;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.highlighted {
    transform: scale(1.03);
    border: 2px solid var(--accent);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.2);
}

.pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1;
}

.selo-plano {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.selo-plano img {
    width: 20px;
    height: 20px;
}

.card-header {
    padding: 70px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: clamp(1.5rem, 4vw, 1.7rem);
    font-weight: 700;
}

.price {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price span {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: var(--gray);
    font-weight: 500;
    margin-top: 12px;
    margin-left: 5px;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.features li {
    margin-bottom: 16px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.features li:hover {
    background-color: rgba(0, 102, 204, 0.03);
}

.features li i {
    font-size: 1.2rem;
    min-width: 24px;
    margin-top: 3px;
}

.features li i.fa-check-circle {
    color: var(--success);
}

.features li i.fa-times-circle {
    color: var(--danger);
}

.btn-plan {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: white;
    border: none;
    padding: 16px 24px;
    width: 100%;
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-plan:active {
    transform: translateY(1px);
}

.btn-plan::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: var(--transition);
}

.btn-plan:hover::after {
    left: 120%;
}

.testimonials {
    margin-top: 60px;
    text-align: center;
}

.testimonials-title {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 25px;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-family: serif;
    color: rgba(0, 102, 204, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.benefit {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.benefit h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit p {
    color: var(--gray);
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.guarantee {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px dashed var(--accent);
}

.guarantee i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 20px;
}

.guarantee h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.guarantee-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #555;
}

/* Responsividade Avançada */
@media (max-width: 768px) {
    .pricing-card.highlighted {
        transform: scale(1);
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }
    
    .card-header {
        padding: 60px 20px 15px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .guarantee {
        padding: 25px 20px;
    }
    
}

@media (max-width: 480px) {
    .selo-plano {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .popular-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
        position: absolute;
    }
    
    .benefits {
        gap: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0d0b4d0 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ee6345 *//* CTA Final */
.cta-section {
    background: linear-gradient(135deg, #003164 0%, #0e5aa6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Botão Plano Básico/Cliente */
.btn-cliente {
    display: inline-block;
    background: linear-gradient(135deg, #f2832a, #ff8a00);
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cliente:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cliente:focus {
    outline: 2px solid #003164;
    outline-offset: 2px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-29fae29 *//* DIVISÓRIA COM ÍCONE CENTRAL */
.divisoria-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 5px auto;
  max-width: 600px;
}

.divisoria-icone .linha {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divisoria-icone .icone img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a662f4f *//* FAQ */

.faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: #f9fbfd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    animation: fadeInUp 0.6s ease-out;
    padding: 0 10px;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
    font-size: 1.1rem;
    background-color: transparent;
    color: #003164;
}

.faq-question:hover {
    color: #ff7f50;
}

.faq-question:focus {
    outline: 3px solid #ff7f50;
    outline-offset: 3px;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: inherit;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: #ff7f50;
    transition: transform 0.3s ease;
    
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
    padding: 10px 0 25px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1880087 *//* Rodapé */
.footer {
    background-color: #003164;
    padding: 60px 0 40px;
    color: #ffffff;
    border-top: 1px solid #f8f9fa;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.logo {
   margin-bottom: 20px;
    color: white;
    font-size: 1.25rem; 
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: #0078ff;
}

.footer-section ul li a:hover {
    color: #0078ff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #f2832a;
    width: 20px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #0078ff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    color: #0078ff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f2832a;
    color: white;
    transform: translateY(-3px);
}

.certifications {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 10px;
}

.certifications span {
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #f8f9fa;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0078ff;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid #f8f9fa;
        text-align: center;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefits-grid,
    .stats-grid,
    .steps-timeline,
    .comparison-cards,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .notification-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .benefit-card,
    .stat-card,
    .step-card,
    .comparison-card,
    .testimonial-card,
    .pricing-card {
        padding: 20px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* Animações de entrada para elementos que entram na viewport */
@media (prefers-reduced-motion: no-preference) {
    .benefit-card,
    .stat-card,
    .step-card,
    .comparison-card,
    .testimonial-card,
    .pricing-card,
    .faq-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }
}

/* Para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */