/* Global Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Estilos Globais e Reset Básico */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Fonte principal moderna */
    color: #333;
    line-height: 1.7;
    background-color: #f8fafc; /* Fundo mais suave */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 25px 0;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; /* Fonte secundária para títulos */
    color: #002D62; /* Azul mais profundo para títulos */
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 0.7em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1.2em;
    color: #4A5568; /* Cinza mais moderno para parágrafos */
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: #0075e3; /* Azul mais vibrante para links */
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px; /* Bordas levemente arredondadas */
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 100%;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: #0070e0; /* Azul principal mais vibrante */
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0062c1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 224, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: #0070e0;
    border: 1px solid #0070e0;
}

.btn-secondary:hover {
    background-color: #0070e0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 224, 0.2);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #0070e0; /* Mantendo consistência com a nova cor */
    border: 1px solid #0070e0; 
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background-color: rgba(0, 112, 224, 0.08); /* Fundo sutil no hover */
    color: #0062c1;
    border-color: #0062c1;
    transform: translateY(-2px);
}

.btn-cta {
    padding: 14px 28px;
    font-size: 1.1rem;
    background-image: linear-gradient(135deg, #0070e0, #00a0ff);
    border: none;
    color: white;
    font-weight: 700;
}

.btn-cta:hover {
    background-image: linear-gradient(135deg, #0062c1, #0090e9);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 114, 224, 0.4);
}

/* Navbar - Nova estrutura */
.navbar {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: padding 0.3s ease;
}

/* Navbar no scroll para baixo (classe adicionada via JS) */
.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
}

/* Logo da navbar */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 46px;
    display: block;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo img {
    height: 42px;
}

/* Menu principal */
.navbar-menu {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}

/* Links de navegação */
.navbar-start {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.navbar-item {
    color: #002D62;
    font-weight: 500;
    margin: 0 18px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0070e0;
    transition: width 0.3s ease;
}

.navbar-item:hover {
    color: #0070e0;
}

.navbar-item:hover::after {
    width: 100%;
}

.navbar-item.active {
    color: #0070e0;
    font-weight: 600;
}

.navbar-item.active::after {
    width: 100%;
}

/* Botões */
.navbar-end {
    display: flex;
    align-items: center;
}

.navbar-buttons {
    display: flex;
    align-items: center;
}

.navbar-buttons .btn {
    margin-left: 10px;
}

/* Botão hambúrguer */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #3e9bf8;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Quando o menu hamburger está ativo */
.navbar-toggler.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - Novo Layout */
.hero-section {
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    padding: 45px 0 30px; /* Reduzindo significativamente o padding superior e inferior */
    text-align: left;
    position: relative;
    overflow: hidden; /* Para os elementos decorativos */
    margin-top: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hero-text {
    max-width: 40%; /* Reduzindo bastante para dar mais espaço para a imagem */
    position: relative;
    z-index: 2;
    padding-right: 0;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: #002D62; 
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text h1 .highlight {
    color: #0070e0;
    position: relative;
    display: inline-block;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 112, 224, 0.15);
    z-index: -1;
    border-radius: 4px;
}

/* Estatísticas do Hero */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 112, 224, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0070e0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: #4A5568;
    margin-top: 5px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin-right: 0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #0070e0;
    color: #0070e0;
    padding: 12px 25px;
    margin: 20px 0;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-outline:hover {
    background-color: rgba(0, 112, 224, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 112, 224, 0.1);
    color: #0070e0;
}

.btn-primary {
    background-color: #0070e0;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary:hover {
    background-color: #0057b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 112, 224, 0.3);
}

/* Imagem grande do hero com elementos flutuantes */
.hero-image-circle {
    max-width: 65%; /* Aumentado significativamente (ocupando ~75% considerando o margin-right) */
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -40px; /* Expande ainda mais para a direita */
}

.hero-image-circle img {
    width: 75%; /* Aumentando para 75% da largura */
    height: auto;
    border-radius: 16px; /* Um leve arredondamento nos cantos */
    border: none;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 46, 98, 0.15);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Elementos flutuantes ao redor da imagem */
.floating-shape {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Reduzindo um pouco para combinar com a imagem menor */
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 46, 98, 0.08);
    z-index: 3;
    animation: float-shape 8s ease-in-out infinite;
}

.floating-shape i {
    font-size: 24px;
    color: #0070e0;
}

.shape-1 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.shape-2 {
    bottom: 10%;
    right: 30%;
    animation-delay: 2.5s;
}

.shape-3 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float-shape {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Elementos decorativos do Hero */
.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-float-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Z-index maior para ficar acima do botão de voltar ao topo */
    transition: transform 0.3s ease, background-color 0.3s ease; 
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    background-color: #1EBE57;
}

/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-float-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Z-index maior para ficar acima do botão de voltar ao topo */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    background-color: #1EBE57;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 120px; /* 60px (altura do botão do WhatsApp) + 25px (bottom do WhatsApp) + 35px (espaçamento) */
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 999; /* Z-index menor que o do botão do WhatsApp */
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    border: none;
    outline: none;
}

.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0052cc, #0099ff);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.back-to-top i {
    font-size: 1.5rem;
}

.back-to-top i {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Link da Política de Privacidade no Footer */
.privacy-link {
    color: #64b5f6;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Dentist Journey Section - Style from Image (White Cards, Blue Top Border) */
.dentist-journey-section {
  padding: 60px 0;
  /* background-color: #f8f9fa; /* Optional: Light grey background for the section */
}

.dentist-journey-section h2 {
  text-align: center;
  font-size: 2.2rem; 
  color: #002D62; /* Dark blue, consistent with other titles */
  margin-bottom: 50px; 
}

/* Styles for the cards in the Dentist Journey section */
/* The general .steps-container should handle flex layout. */
.dentist-journey-section .step-card {
  background-color: #ffffff; /* White background for cards */
  border: 1px solid #e9ecef; /* Light border for card definition */
  border-top: 4px solid #007bff; /* Blue top border as per image */
  border-radius: 8px; /* Rounded corners */
  padding: 25px; /* Padding inside the card */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07); /* Subtle shadow */
  text-align: left; 
  /* Assuming .steps-container handles flex-basis and gap. 
     If not, these might be needed here or in a media query. */
}

.dentist-journey-section .step-card h4 {
  font-size: 1.15rem; 
  color: #343a40; /* Dark grey for title */
  margin-top: 0;
  margin-bottom: 10px; 
  font-weight: 600;
}

.dentist-journey-section .step-card p {
  font-size: 0.9rem; 
  color: #495057; /* Medium grey for text */
  line-height: 1.6;
  margin-bottom: 0; 
}

/* Icon styling within the journey cards */
.dentist-journey-section .journey-icon {
  font-size: 2.5rem; /* Size of the icon */
  color: #007bff; /* Blue color, matching the top border */
  margin-bottom: 15px; /* Space below the icon */
  display: block; /* Make it a block to control margin and alignment if needed */
  text-align: left; /* Align icon to the left, consistent with text */
}

/* Ensure .steps-container in this section has appropriate gap if not globally defined */
.dentist-journey-section .steps-container {
  gap: 20px; /* Adjust gap as needed to match image spacing */
  /* Ensure flex properties from general .steps-container are suitable */
  /* For example, it should have display: flex; flex-wrap: wrap; */
  /* justify-content might be space-between or space-around */
}

/* Círculos decorativos - exemplo básico */
.decorative-circles::before, .decorative-circles::after,
.decorative-circles .circle {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.decorative-circles .circle {
    background: radial-gradient(circle at center, rgba(0, 112, 224, 0.08), rgba(0, 123, 255, 0.01));
}

.decorative-circles::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: 8%;
    background: radial-gradient(circle at center, rgba(101, 182, 255, 0.07), rgba(0, 112, 224, 0.01));
    animation: float 12s infinite ease-in-out;
}

.decorative-circles::after {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -50px;
    background: radial-gradient(circle at center, rgba(21, 142, 255, 0.05), rgba(0, 112, 224, 0.01));
    animation: float 15s infinite ease-in-out reverse;
}

.decorative-circles .circle-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 25%;
    opacity: 0.5;
    animation: float 18s infinite ease-in-out;
}

.decorative-circles .circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    opacity: 0.7;
    animation: float 14s infinite ease-in-out 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(15px) scale(1.05); }
}

/* Smart Grip Section */
.smart-grip-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.smart-grip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    z-index: -1;
}

.smart-grip-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.smart-grip-text {
    flex: 1.2;
}

.smart-grip-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 45, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(-5deg);
    height: 100%;
    min-height: 400px;
    margin: 20px 0;
}

.smart-grip-image:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 45, 98, 0.15);
}

.smart-grip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.smart-grip-image:hover img {
    transform: scale(1.03);
}

/* Ajustes específicos para a imagem do Smart Grip */
.smart-grip-img {
    border-radius: 20px;
}

.section-tag {
    display: inline-block;
    background-color: #0070e0; /* Cor sólida para parecer uma tag, não um botão */
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none; /* Removido para visual de tag */
}

.smart-grip-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #002D62;
}

.smart-grip-section h2 .highlight {
    color: #0066ff;
    position: relative;
    display: inline-block;
}

.smart-grip-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 102, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.smart-grip-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 20px 0 25px;
    line-height: 1.7;
    max-width: 100%;
}

.smart-grip-features {
    margin: 30px 0 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 102, 255, 0.1);
}

.feature-item i {
    color: white;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    margin-top: 2px;
}

.feature-item div h4 {
    color: #002D62;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-item div p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
    .smart-grip-content {
        gap: 50px;
    }
    
    .smart-grip-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .smart-grip-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }
    
    .smart-grip-text, 
    .smart-grip-image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .smart-grip-text {
        margin-bottom: 20px;
    }
    
    .smart-grip-description {
        max-width: 100%;
    }
    
    .smart-grip-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .smart-grip-section {
        padding: 50px 0 30px;
    }
    
    .smart-grip-section h2 {
        font-size: 2.2rem;
    }
    
    .smart-grip-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .smart-grip-section h2 {
        font-size: 1.8rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin: 0 auto 15px;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e4ed8 100%);
    position: relative;
    overflow: hidden;
    color: white;
    transform: translateZ(0);
}

/* Estilo do texto centralizado com fade-in */
.typing-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 112, 224, 0.03), rgba(255, 255, 255, 0));
    z-index: 0;
}

.stats-section::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.stats-section::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 30px;
    line-height: 1.3;
    max-width: 900px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: left;
}

.stats-section .highlight {
    color: #64ffda;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

.stats-section .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(100, 255, 218, 0.3);
    z-index: -1;
    border-radius: 4px;
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0% { opacity: 0.5; transform: scaleX(0.95); }
    50% { opacity: 0.8; transform: scaleX(1.05); }
    100% { opacity: 0.5; transform: scaleX(0.95); }
}

.stats-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
    line-height: 1.7;
}

.stats-image-container {
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.stats-image-container img {
    max-width: 85%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 46, 98, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-overlay-text {
    position: absolute;
    background-color: rgba(0, 51, 102, 0.8); /* Azul escuro com transparência */
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    border: 1px solid rgba(255,255,255,0.5);
}

.image-overlay-text.top-left {
    top: 20px;
    left: 20px;
}

.image-overlay-text.middle-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #3fa2e0 0%, #0070e0 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.how-it-works-section::before,
.how-it-works-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.how-it-works-section::before {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
}

.how-it-works-section::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

.how-it-works-section h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.how-it-works-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.how-it-works-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.btn-cta-como-funciona {
    display: block; /* Para permitir margem auto e ocupar largura do conteúdo */
    width: fit-content; /* Ajusta a largura ao conteúdo do botão */
    margin: 40px auto 0; /* Margem superior, centralizado horizontalmente, sem margem inferior */
    padding: 12px 30px; /* Ajuste o padding se necessário */
    font-size: 1.1em; /* Ajuste o tamanho da fonte se necessário */
}

/* Estilo original do parágrafo, caso precise ser separado */
.how-it-works-section .section-subtitle {
    color: #f0f8ff; /* Branco azulado para o parágrafo */
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    width: calc(25% - 22px);
    min-width: 230px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0070e0, #00a0ff);
    z-index: 2;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
    opacity: 0.8;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    background: linear-gradient(135deg, #e1f5fe, #e3f2fd);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 112, 224, 0.15);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 112, 224, 0.2);
}

.step-icon i {
    font-size: 2.6rem;
    color: #0070e0;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    transform: scale(1.1);
    color: #0062c1;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #0D2B57;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: #0070e0;
}

.step-card p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Technology Section */
.technology-section {
    padding: 90px 0;
    background: #f8fafd;
    position: relative;
    overflow: hidden;
}

.technology-section::before,
.technology-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 112, 224, 0.03), rgba(255, 255, 255, 0));
    z-index: 0;
}

.technology-section::before {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.technology-section::after {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
    opacity: 0.7;
}

.content-with-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background-color: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 46, 98, 0.08);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.content-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #0070e0, #39aeff);
    z-index: 1;
}

.text-content {
    flex: 1;
    padding-left: 20px;
    position: relative;
}

.text-content h2 {
    font-size: 2.2rem;
    color: #0D2B57;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, #39aeff);
    border-radius: 2px;
}

.text-content p {
    color: #4A5568;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: #2D3748;
    font-size: 1.05rem;
}

.text-content ul li i {
    color: #0070e0;
    margin-right: 15px;
    font-size: 1.3rem;
    background: rgba(0, 112, 224, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-content {
    flex-basis: 45%;
    position: relative;
}

.image-content img {
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 46, 98, 0.12);
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.image-content:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 46, 98, 0.18);
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
    text-align: center;
    background-color: #f8fafd;
    position: relative;
    overflow: hidden;
}

.benefits-section::before,
.benefits-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.benefits-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle at center, rgba(0, 112, 224, 0.03), rgba(248, 250, 253, 0));
}

.benefits-section::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle at center, rgba(0, 112, 224, 0.04), rgba(248, 250, 253, 0));
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-section h2 {
    color: #0D2B57;
    font-size: 2.4rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* Estilos para os cards de benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,46,98,0.1);
    border-color: rgba(0,112,224,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0,112,224,0.1), rgba(57,174,255,0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: #0070e0;
    font-size: 24px;
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #0a2540;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #505a68;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsividade para os cards */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px;
    }
}

/* Seção de Depoimentos */
.testimonials-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0a2540;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #505a68;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,46,98,0.08);
}

.testimonial-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #0a2540;
}

.testimonial-author p {
    margin: 0 0 6px 0;
    font-size: 14px;
    color: #64748b;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-body {
    flex: 1;
}

.testimonial-body p {
    color: #505a68;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Responsividade para depoimentos */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    /* Centralização do footer no mobile - versão simples */
    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-about img.footer-logo {
        margin: 0 auto 15px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-links ul {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p,
    .footer-contact a {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .footer-bottom p {
        text-align: center;
    }
}

.benefit-icon i {
    font-size: 2.6rem;
    color: #0070e0;
    display: inline-block;
    background: rgba(0, 112, 224, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    background: linear-gradient(135deg, #0070e0, #39aeff);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 112, 224, 0.15);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0D2B57;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover h3 {
    color: #0070e0;
}

.benefit-card p {
    color: #4A5568;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0057b8 0%, #0070e0 100%);
    padding: 90px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.testimonials-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.testimonials-section::after {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 5;
}

.testimonials-section h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.testimonials-section p.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.testimonial-slider:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide.active {
    display: block;
}

.stars {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 6rem;
    font-family: 'Georgia', serif;
    position: absolute;
    top: -40px;
    left: -20px;
    color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding-top: 20px;
    position: relative;
}

.author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.author-avatar {
    position: relative;
    margin-right: 18px;
}

.author-initials {
    background: linear-gradient(135deg, #0057b8, #39aeff);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.author:hover .author-initials {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.author-avatar::after {
    content: '\201D';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    color: #0070e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-family: 'Georgia', serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-info {
    text-align: left;
}

.author-info p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.slider-controls {
    position: relative;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.slider-prev:focus, .slider-next:focus {
    outline: none;
}

.slider-prev {
    left: -24px;
}

.slider-next {
    right: -24px;
}

.slider-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(0, 112, 224, 0.8);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0D2B57 0%, #001f3f 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.03;
}

.footer::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle at center, #39aeff, transparent 70%);
}

.footer::after {
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle at center, #39aeff, transparent 70%);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 240px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(0, 112, 224, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover i {
    color: white;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 22px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, #39aeff);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #39aeff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact p {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
    color: #0070e0;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #39aeff;
}

.footer-contact .btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #0070e0, #39aeff);
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .copyright {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom .copyright i {
    color: #0070e0;
    font-size: 1.1rem;
}

.footer-bottom .copyright span {
    font-weight: 500;
}

/* ===== Estilos para a Jornada do Dentista ===== */
.dentist-journey-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.dentist-journey-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dentist-journey-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto 0;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, #e0e6ed, #0066ff, #00c6ff, #e0e6ed);
    top: 30px; /* Ajuste para começar após o título */
    bottom: 30px; /* Ajuste para terminar antes do rodapé */
    left: 50%;
    margin-left: -1.5px;
    border-radius: 5px;
    opacity: 0.8;
}

.journey-step {
    padding: 15px 0; /* Reduzido o padding vertical */
    position: relative;
    width: 100%;
    clear: both;
}

.step-number {
    position: absolute;
    width: 40px; /* Tamanho reduzido */
    height: 40px;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    top: 10px; /* Posição ajustada */
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.3);
    border: 2px solid white; /* Borda branca para contraste */
}

.step-content {
    width: calc(50% - 50px); /* Ajuste na largura */
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    margin: 5px 0; /* Margem reduzida */
    border-left: 4px solid #0066ff; /* Borda lateral para destaque */
}

.journey-step:nth-child(odd) .step-content {
    float: right;
    margin-right: 25px;
}

.journey-step:nth-child(even) .step-content {
    float: left;
    margin-left: 25px;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
    border-left-color: #00c6ff; /* Muda a cor da borda ao passar o mouse */
}

.journey-icon {
    font-size: 2.5rem;
    color: #0066ff;
    margin-bottom: 15px;
    display: block;
}

.step-content h4 {
    color: #002D62;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    margin: 0 0 15px;
    line-height: 1.6;
}

.btn-journey-cta {
    display: inline-block;
    background: #f0f7ff;
    color: #0066ff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid #d0e4ff;
}

.btn-journey-cta:hover {
    background: #0066ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.journey-cta {
    clear: both;
    text-align: center;
    padding: 50px 0 20px;
    margin-top: 30px;
    position: relative;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    border-radius: 3px;
}

.journey-cta h3 {
    color: #002D62;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.journey-cta p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Estilos para os CTAs adicionais */
.cta-box {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    border: 1px solid #e0e6ed;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-box h4 {
    color: #002D62;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cta-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-box .btn-outline {
    border: 2px solid #0066ff;
    color: #0066ff;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-box .btn-outline:hover {
    background: #0066ff;
    color: white;
}

/* Estilos para o botão na seção de benefícios */
.benefits-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 10px auto 25px;
}

.btn-cta-beneficios {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .journey-timeline::before {
        left: 30px;
    }
    
    .journey-step {
        padding-left: 80px;
    }
    
    .step-number {
        left: 0;
        transform: none;
    }
    
    .step-content {
        width: 100%;
        float: none !important;
        margin: 0 0 20px 0 !important;
    }
    
    .journey-cta {
        padding: 30px 0 10px;
    }
}

@media (max-width: 768px) {
    .dentist-journey-section {
        padding: 60px 0;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .journey-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* ===== Estilos para a Jornada do Dentista ===== */
.journey-path-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.journey-path-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-path-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto 0;
}

.journey-path {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0; /* Adicionando padding para espaçamento */
}

.path-line {
    position: absolute;
    left: 50%;
    top: 100px; /* Ajuste para começar após o título */
    bottom: 100px; /* Ajuste para terminar antes do rodapé */
    width: 3px;
    background: linear-gradient(to bottom, #0066ff, #00c6ff, #0066ff);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 4px;
    opacity: 0.8;
}

.path-step {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinhar ao topo */
    z-index: 2;
    min-height: 150px; /* Aumentei a altura mínima */
    padding: 20px 0; /* Adicionei padding vertical */
}

.step-card {
    width: 45%;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin: 0 20px; /* Aumentei a margem lateral */
    border-left: 4px solid #0066ff;
    min-height: 200px; /* Altura fixa para os cards */
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.1);
}

.path-step:nth-child(even) .step-card {
    margin-left: auto;
    margin-right: 10px;
    border-left-color: #00c6ff; /* Cor diferente para os cards pares */
}

.path-step:nth-child(odd) .step-card {
    margin-right: auto;
    margin-left: 10px;
    border-top-color: #00c6ff;
}

/* Alinhamento dos ícones */
/* Removido estilos antigos de ícone */

.step-card p {
    color: #555;
    margin: 10px 0 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-path {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    align-self: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.btn-path:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c6ff, #0066ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.btn-path:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 102, 255, 0.4);
}

.btn-path:hover:before {
    opacity: 1;
}

.path-cta {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    clear: both;
    margin-top: 40px;
    background-color: #f8fafc;
    z-index: 4;
    position: relative;
    border-top: 1px solid #eaeff5; /* Linha sutil para separar */
}

.path-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    border-radius: 3px;
}

.path-cta h3 {
    color: #002D62;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.path-cta p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .path-step {
        flex-direction: column;
        text-align: left;
        padding: 15px 0;
        min-height: auto;
    }
    
    .path-step .step-card {
        width: calc(100% - 30px) !important;
        margin: 10px 0 10px 40px !important;
        min-height: auto;
        padding: 20px 15px;
    }
    
    .path-line {
        left: 20px;
        top: 30px;
        bottom: 30px;
    }
    
    .step-number-circle {
        position: absolute;
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .journey-path-section {
        padding: 40px 0;
    }
    
    .journey-path {
        padding: 20px 0;
    }
    
    .path-step .step-card {
        width: calc(100% - 20px) !important;
        margin: 10px 0 10px 40px !important;
        padding: 15px;
    }
    
    .path-cta {
        padding: 50px 0 30px;
        margin-top: 20px;
    }
    
    .path-cta h3 {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .path-cta p {
        padding: 0 15px;
    }
    
    .btn-large, .btn-path {
        width: 90%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

.footer-bottom .legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #39aeff;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hero-image {
        max-width: 70%;
        margin: 0 auto;
    }
    .steps-container .step-card {
        /* For 2 cards per row with a 20px gap: (100% - (1 * 20px)) / 2 */
        width: calc(50% - 10px);
    }
    .content-with-image {
        flex-direction: column;
    }
    .image-content {
        margin-top: 20px;
        order: -1; /* Imagem primeiro em telas menores se desejado */
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 1250px) {
    .navbar .container {
        position: relative; /* Para posicionar o menu corretamente */
    }
    
    /* Botão hamburger visível em telas pequenas */
    .navbar-toggler {
        display: block;
        order: 3;
    }
    
    /* O menu principal fica escondido por padrão em tela pequena */
    .navbar-menu {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
    }
    
    /* Quando o menu é ativado pelo botão hamburger */
    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: 1px solid #e1e1e1;
        padding-top: 15px;
    }
    
    /* Os links e botões ficam em coluna */
    .navbar-start,
    .navbar-end {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin: 0;
    }
    
    .navbar-start {
        order: 1; /* Links de navegação primeiro */
        margin-bottom: 20px; /* Espaço entre os links e botões */
    }
    
    .navbar-end {
        order: 2; /* Botões depois */
    }
    
    /* Cada link em uma linha própria */
    .navbar-item {
        margin: 10px 0;
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }
    
    /* Botões em linhas separadas */
    .navbar-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .navbar-buttons .btn {
        margin: 8px 0;
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 1250px) {
    /* Hero Section para Mobile - Imagem acima do texto */
    .hero-content {
        flex-direction: column-reverse;
        padding: 0 15px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-top: 30px;
        text-align: center;
    }
    
    .hero-image-circle {
        display: none; /* Oculta a imagem completamente em dispositivos móveis */
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-shape {
        display: none; /* Oculta os elementos flutuantes em telas pequenas */
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2em;
    }
    .stats-section h2 {
        font-size: 1.8em;
    }
    .how-it-works-section h2, .benefits-section h2, .testimonials-section h2, .technology-section .text-content h2 {
        font-size: 1.8em;
    }
    .steps-container .step-card {
        width: 100%; /* 1 card por linha */
    }
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 card por linha */
    }
    .slider-prev, .slider-next {
        display: none; /* Pode simplificar o slider em mobile */
    }
    .footer-bottom .container {
        flex-direction: column;
    }
}