* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-dark: #0f172a;
  --text-light: #f1f5f9;
  --primary-blue: #3b82f6;
  --secondary-blue: #60a5fa; /* from hero/buttons */
  /* ... and so on */
}
body {
  font-family: 'Inter', sans-serif;
  padding: 0 1rem;
  background-color: var(--bg-dark);
  color: var(--text-light);
}
a{
  text-decoration:none;
}
.navbar {
    max-width: 1080px;
    margin: 0 auto;
    display: contents;
    align-items: center;
  justify-content: space-between;
  gap: 200px;
}



.logo-footer{
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: auto;
  object-fit: cover;
  box-shadow: 0 0 15px #60a5faaa;
  border: 4px solid #60a5fa;
  transition: transform 0.3s ease;
  display: flex;
}
.logo-footer:hover {
  transform: scale(1.05);
}
.logo-footer img {
  width: 180%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

nav a {
  margin: 0 1rem;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: white;
}


.hero {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.badge {
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.hero p {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.primary {
  background: linear-gradient(to right, #6366f1, #3b82f6);
  color: white;
}
.secondary {
  background: white;
  color: #1e293b;
}

.url-bar {
  background: #1e293b;
  margin: 2rem auto;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.circles {
  display: flex;
  gap: 0.3rem;
  margin-right: 1rem;
}
.red, .yellow, .green {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
}
.red { background: #f87171; }
.yellow { background: #facc15; }
.green { background: #4ade80; }

.url-bar p {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.footer-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  color: #cbd5e1;
  font-weight: 500;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.dropbtn:hover {
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e293b;
  min-width: 280px;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  top: 2rem;
  z-index: 1000;
  left: -210px;
}

.dropdown-content a {
  color: #f1f5f9;
  padding: 0.5rem 0;
  text-decoration: none;
  display: block;
}
.dropdown-content a span {
  font-size: 0.875rem;
  color: #94a3b8;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Container geral da seção */
.preview-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  background-color: #0f172a;
}

/* Janela de preview */
.preview-window {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Borda superior com gradiente */
.preview-window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
}

/* Barra de controle (círculos) */
.window-top {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.red    { background: #f87171; }
.yellow { background: #facc15; }
.green  { background: #4ade80; }

/* Conteúdo interno */
.window-content {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  color: #e2e8f0;
}

/* Esfera com glow e iniciais */
.logo-sphere {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle at center, #4f46e5 0%, #6366f1 80%);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
}

/* Título e texto */
.window-content h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
.window-content p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* Botão primário */
.btn.primary {
  background: linear-gradient(90deg, #6366f1, #3b82f6);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary:hover {
    background: #3b82f6;
    color: white;
    transition: ease-in-out 0.1s;
}
.features-section {
  padding: 4rem 1rem;
  background-color: #0f172a;
  color: #e2e8f0;
  text-align: center;
}

.features-header .pill {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: default;
  margin-top: auto;
}
.features-header .pill.selected {
  background-color: #1e293b;
}

.features-header .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}
.features-header .subtitle {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.tab-menu {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.tab {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  color: #94a3b8;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab.active {
  background: white;
  color: #0f172a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  color: #3b82f6;
}
.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: #0f172a;
}

.icon{
  background-color: #f1f5f9;
}
.feature-card {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
  transition: border 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
    display: flex;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}
.feature-card p {
  color: #94a3b8;
  font-size: 0.95rem;
}
.testimonials-section {
  padding: 4rem 1rem;
  background-color: #0f172a;
  color: #e2e8f0;
  text-align: center;
}

.testimonials-header .pill {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: default;
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.testimonials-header p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
  transition: border 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info div {
  flex: 1;
}
.user-info .role {
  color: #94a3b8;
  font-size: 0.85rem;
}
.stars {
  color: #3b82f6;
  font-size: 1.1rem;
}

.comment {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.4;
}
/* CTA Section */
.cta-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #0f172a;
  color: white;
}
.cta-section .cta-pill {
  background-color: transparent;
  border: 1px solid #3b82f6;
  border-radius: 999px;
  padding: 0.3rem 1rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-section p {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn.primary {
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(to right, #3b82f6, #6366f1);
}
.btn-outline{
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover {
  background: #3b82f6;
  color: white;
  transition: ease-in-out 0.1s;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 3rem 1rem;
  margin-bottom: 0;
}
.footer-container {
  max-width: 1200px;
  margin:  auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 0;
}
.footer-brand {
  max-width: 300px;
}

.footer-columns{
  text-align: left;
}
.footer-brand h3 {
  color: white;
  margin: 0.25rem 0;
}
.social-icons a {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #cbd5e1;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-columns h4 {
  color: white;
  margin-bottom: 0.75rem;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
}
.footer-columns ul li a {
  text-decoration: none;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-columns ul li a:hover {
  color: #3b82f6;
}
.text{
    color: white;
    font-size: 0.875rem;
    margin-top: 4rem;
    text-align: left;
    align-items: start;
    display: flex;
    justify-self: center;
}
/* Reset e base */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body {
    margin: 0; font-family: 'Inter', sans-serif;
    background: #0c0f1f;
    color: #d1d5db;
    scroll-behavior: smooth;
  }
  a {
    color: #60a5fa; text-decoration: none;
  }
  /* Header */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #121624cc;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 3rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  
  nav a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
  }
  nav a:hover {
    color: #8ab4f8;
  }
  /* Hero */
  main.hero {
    padding: 100px 2rem 80px; /* para header fixo */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  main.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #8ab4f8;
  }
  main.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
  }
  .btn-primary {
    background-color: #60a5fa;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  /* Avatar circular */
  .hero-avatar {
    width: 128px;
    border-radius:20rem;
    object-fit: cover;
    margin: 2rem auto 3rem;
    box-shadow: 0 0 15px #60a5faaa;
    border: 4px solid #60a5fa;
    transition: transform 0.3s ease;
  }

  /* Sobre */
  section#about {
    max-width: 900px;
    margin-top: 200px;
    padding: 2rem;
    background: #1f2937;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.25);
  }
  section#about h2 {
    font-size: 2.2rem;
    color: #60a5fa;
  }
  section#about p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #d1d5db;
  }
  /* Skills */
  .skills-list {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .skill {
    background: #3b82f6;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
  }
/* Projects Section adaptations for carousel */
section#projects {
    max-width: 1920px;
    margin: 0 auto 4rem;
    padding: 0;
    /* Removed display: grid; from here */
}

section#projects h2 {
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 20px;
}

.carousel-wrapper {
    position: relative;
    display: flex; /* Use flexbox to align carousel and buttons */
    align-items: center; /* Center buttons vertically */
    gap: 1rem; /* Space between buttons and carousel */
}

.projects-carousel {
    display: flex; /* Makes project cards align in a row */
    overflow-x: scroll; /* Enables horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snaps to cards when scrolling */
    -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */
    gap: 1.5rem; /* Space between project cards */
    padding-bottom: 1rem; /* Add some padding if scrollbar is visible */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.projects-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.project-card {
    flex: 0 0 300px; /* Important: Make cards a fixed width and prevent shrinking */
    scroll-snap-align: start; /* Snap to the start of each card */
    background: #102441;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.35);
    transition: transform 0.3s ease;
    display: flex; /* Added for vertical layout of card content */
    flex-direction: column; /* Organize content vertically */
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-thumbnail {
    width: 100%;
    height: 180px; /* Fixed height for thumbnails */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #3b82f6;
}

.project-card h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: #60a5fa;
}

.project-card p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1; /* Allows paragraph to take available space */
}

.project-links {
    margin-top: auto; /* Pushes links to the bottom of the card */
}

.project-links a {
    margin-right: 1rem;
    color: #8ab4f8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}



.carousel-button {
    background: rgba(96, 165, 250, 0.7); /* Slightly transparent blue */
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50%; /* Circular buttons */
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.carousel-button:hover {
    background: #60a5fa;
}


/* Responsive adjustments */
@media (max-width: 900px) {
    .projects-carousel {
        /* On smaller screens, allow more cards to show or adjust width if needed */
        justify-content: flex-start; /* Align items to start */
    }
    .project-card {
        flex: 0 0 calc(100% - 2rem); /* Make cards almost full width on small screens, accounting for gap */
    }
    .dropdown-content{
      left: auto;
    }
    .carousel-button {
        padding: 0.3rem 0.6rem;
        font-size: 1.5rem;
    }
}
  /* Depoimentos */
  section#testimonials {
    max-width: 1920px;
    padding: 2rem;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.25);
    align-items: center;
    align-content: center;
    align-self: center;
    text-align: center;
    justify-content: center;
    justify-self: normal;
}

  section#testimonials h2 {
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-align: center;
  }
  .testimonial {
    background: #0c0f1f;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.5);
  }
  .testimonial p {
    font-style: italic;
    color: #cbd5e1;
  }
  .testimonial strong {
    display: block;
    margin-top: 0.7rem;
    color: #60a5fa;
  }
  /* Contato */
  section#contact {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: #1f2937;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.25);
  }
  section#contact h2 {
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-align: center;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  input, textarea {
    padding: 0.8rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    resize: vertical;
  }
  input:focus, textarea:focus {
    outline: 2px solid #60a5fa;
  }
  button[type="submit"] {
    background: #60a5fa;
    color: white;
    font-weight: 700;
    border: none;
    padding: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  button[type="submit"]:hover {
    background: #3b82f6;
  }
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background: #121624;
    color: #94a3b8;
    font-size: 0.9rem;
  }
  footer .social-links a {
    margin: 0 0.7rem;
    color: #60a5fa;
    font-size: 1.4rem;
  }
  footer .social-links a:hover {
    color: #8ab4f8;
  }
  /* Responsivo */
  @media (max-width: 900px) {
    header {
      flex-direction: column;
      gap: 1rem;
    }
    nav a {
      margin-left: 1rem;
      font-size: 0.9rem;
    }
  }
  /* Reset e base */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0; font-family: 'Inter', sans-serif;
    background: #0c0f1f;
    color: #d1d5db;
    scroll-behavior: smooth;
}
a {
    color: #60a5fa; text-decoration: none;
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #121624cc;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 3rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}
nav a:hover {
    color: #8ab4f8;
}
/* Hero */
main.hero {
    padding: 100px 2rem 80px; /* para header fixo */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
main.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #8ab4f8;
}
main.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
}
.hero-actions { /* Novo estilo para os botões do hero */
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.btn-primary {
    background-color: #60a5fa;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary:hover {
    background: #3b82f6;
    color: white;
    transition: ease-in-out 0.1s;
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid #60a5fa;
    color: #60a5fa;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transition: ease-in-out 0.1s;
}
/* Avatar circular */

/* Sobre */
section#about {
    max-width: 900px;
    margin: 100px auto   20px;
    padding: 2rem;
    background: #1f2937;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.25);
}
section#about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}
section#about p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #d1d5db;
}
/* Skills */
.skills-list {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.skill {
    background: #3b82f6;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
}
/* Projects Section adaptations for carousel */
section#projects {
    max-width: 1920px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    /* Removed display: grid; from here */
}

section#projects h2 {
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 20px;
}

.carousel-wrapper {
    position: relative;
    display: flex; /* Use flexbox to align carousel and buttons */
    align-items: center; /* Center buttons vertically */
    gap: 1rem; /* Space between buttons and carousel */
}

.projects-carousel {
    display: flex; /* Makes project cards align in a row */
    overflow-x: scroll; /* Enables horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snaps to cards when scrolling */
    -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */
    gap: 1.5rem; /* Space between project cards */
    padding-bottom: 1rem; /* Add some padding if scrollbar is visible */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.projects-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.project-card {
    flex: 0 0 300px; /* Important: Make cards a fixed width and prevent shrinking */
    scroll-snap-align: start; /* Snap to the start of each card */
    background: #102441;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.35);
    transition: transform 0.3s ease;
    display: flex; /* Added for vertical layout of card content */
    flex-direction: column; /* Organize content vertically */
    margin: 30px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-thumbnail {
    width: 100%;
    height: 180px; /* Fixed height for thumbnails */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #3b82f6;
}

.project-card h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: #60a5fa;
}

.project-card p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1; /* Allows paragraph to take available space */
}

.project-links {
    margin-top: auto; /* Pushes links to the bottom of the card */
}

.project-links a {
    margin-right: 1rem;
    color: #8ab4f8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.project-links a:hover {
    text-decoration: underline;
}

.carousel-button {
    background: rgba(96, 165, 250, 0.7); /* Slightly transparent blue */
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50%; /* Circular buttons */
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.carousel-button:hover {
    background: #60a5fa;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .projects-carousel {
        /* On smaller screens, allow more cards to show or adjust width if needed */
        justify-content: flex-start; /* Align items to start */
    }
    .project-card {
        flex: 0 0 calc(100% - 2rem); /* Make cards almost full width on small screens, accounting for gap */
    }
    .features-grid{
      display: inline;
    }
    .carousel-button {
        padding: 0.3rem 0.6rem;
        font-size: 1.5rem;
    }
}

.testimonial {
    background: #0c0f1f;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.5);
    display: flex;
    flex-direction: column;
}
.testimonial p {
    font-style: italic;
    color: #cbd5e1;
    flex-grow: 1; /* Permite que o parágrafo ocupe o espaço */
}
.testimonial strong {
    display: block;
    margin-top: 0.7rem;
    color: #60a5fa;
}
.testimonial-author { /* Novo estilo para autor e cargo */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #60a5fa;
}
.author-info span {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
}
/* Contato */
section#contact {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: #1f2937;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.25);
}
section#contact h2 {
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
input, textarea {
    padding: 0.8rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    resize: vertical;
    background-color: #2c3a4d; /* Cor de fundo mais escura para inputs */
    color: #d1d5db;
}
input::placeholder, textarea::placeholder {
    color: #94a3b8;
}
input:focus, textarea:focus {
    outline: 2px solid #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}
button[type="submit"] {
    background: #60a5fa;
    color: white;
    font-weight: 700;
    border: none;
    padding: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
    background: #3b82f6;
}
/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #121624;
    color: #94a3b8;
    font-size: 0.9rem;
}
footer .social-links a {
    margin: 0 0.7rem;
    color: #60a5fa;
    font-size: 1.4rem;
}
footer .social-links a:hover {
    color: #8ab4f8;
}

/* Responsivo */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1rem; /* Ajuste para mobile */
    }
    nav a {
        margin-left: 0.8rem;
        font-size: 0.9rem;
    }
    main.hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    main.hero p {
        font-size: 0.8rem;
        text-align: justify;
    }
    .window-content p{
      text-align: justify;
    }
    .features-header .subtitle{
      text-align: justify;
    }
    .user-info {
    display: grid;
    }
    .cta-section p {
      text-align: justify;
    }
    .footer-brand {
    max-width: 300px;
    text-align: center;
    align-items: center;
    align-content: center;
    align-self: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    display: flow;
    margin: auto;
    }
  .footer-columns {
  display: flex;
  gap: 3rem;
  text-align: left;
  align-items: flex-start;
  align-content: flex-start;
  align-self: center;
  justify-content: center;
  justify-items: center;
  justify-self: center;
  margin: 51px;
  }
  .footer-container {
  max-width: 1200px;
  margin: auto;
  display: block;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: auto;
  } 
    .testimonials-header p {
      text-align: justify;
    }

    .hero-actions {
        flex-direction: column; /* Botões empilhados em mobile */
        gap: 0.8rem;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        margin-left: 0;
        align-self: anchor-center;
    }
}
.swiper-pagination-bullet{border: 1px solid #1da1f2;}.swiper-pagination-bullet-active{background:#173548}
img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 12px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    max-width: 512px;
    max-height: 512px;
    transition-property: transform;
    display: block;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: -webkit-transform, height;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, .5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-cube,
.swiper-container-flip {
    overflow: visible
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    max-width: 100px;
    max-height: 200px;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swiper-container.one {
    padding-top: 40px;
    text-align: center;
}

.swiper-container.one .swiper-slide {
    padding: 0 43px;
}

.swiper-container {
    width: 100%;
    padding-bottom: 60px;
}

.swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
}

.swiper-slide {
    width: 200px;
    height: auto;
    padding: 0 15px;
}
.two  {
    width: 300px;
}
.swiper-slide img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide .slider-image .preview-icon {
    z-index: -1;
    width: calc(100% - 30px);
}

.swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
	background: transparent none repeat scroll 0 0;
	border: 1px solid #ee0f6f;
	border-radius: 10px;
	display: inline-block;
	height: 10px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	width: 26px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    border: medium none;
    height: 12px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    width: 12px;
}
/* BOTÃO HAMBÚRGUER */
.botao-menu-hamburguer {
  display: none;
}

.botao-menu {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primeira-cor);
  cursor: pointer;
  padding: 10px;
}

/* MENU ATIVO ESTILIZADO */
.menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  width: 100%;
  position: absolute;
  top: 70px; /* abaixo da navbar */
  left: 0;
  padding: 20px 0;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  z-index: 100;
  text-align: center;
}

.menu.ativo {
  display: flex;
}

.menu.ativo ul {
    padding: 0;
    list-style: none;
    text-align: left;
    margin: 0 0 0 20px;
}

.menu.ativo li {
    margin: 10px 0;
}

.menu.ativo a {
    text-decoration: none;
    color: var(--quarta-cor);
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.menu.ativo a:hover {
    color: var(--hover-color);
}

.botao-menu {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primeira-cor);
  cursor: pointer;
  padding: 10px;
}
.menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  width: 100%;
  position: absolute;
  top: 70px; /* abaixo da navbar */
  left: 0;
  padding: 20px 0;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  z-index: 100;
  text-align: center;
}
.botao-menu-hamburguer {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}
.navbarList{
  margin: 20;
}
/* Animação */
@keyframes logoPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px #60a5fa;
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 10px #60a5fa;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0px #60a5fa;
  }
}

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

/* Aplicação no logo */
.logo a {
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  color: #60a5fa;
  animation: logoFadeIn 0.8s ease-out forwards, logoPulse 2s infinite ease-in-out;
}


.logo {
    position: absolute;
    display: flex;
    align-items: inherit;
    justify-content: space-around;
    gap: 1rem;
}

/* Círculo animado */
.logo-circle {
  width: 48px;
  height: 48px;
  position: absolute;
}

.logo-circle circle {
  fill: #1e293b;              /* cor de fundo */
  stroke: #60a5fa;            /* cor do traço */
  stroke-width: 3;
  stroke-dasharray: 283;      /* comprimento total da circunferência */
  stroke-dashoffset: 283;     /* começa invisível */
  animation: drawCircle 1.5s ease forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;     /* desenha o contorno */
  }
}

.logo a {
  font-weight: bold;
  font-size: 1.5rem;
  color: #60a5fa;
}

.logo span {
  color: white;
  margin-left: 0.2rem;
}

@media screen and (max-width: 900px) {
    .botao-menu{
      display: contents;
    }
    .menu{
      display: block;
    }
    .navbar {
        display: none; /* Esconde o menu normal */
        margin: 0;
    }
    .navbarList{
      display:grid;
    }
    header{
      align-items: center;
    }
    .logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: #60a5fa;
    cursor: pointer;
    position: absolute;
    justify-content: center;
    }
    .botao-menu-hamburguer {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    align-self: flex-end;
    }
    .navbar.ativo {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
        justify-content: flex-start;
        justify-items: flex-start;
        justify-self: flex-start;
        align-items: flex-start;
        align-self: flex-start;
        align-items: flex-start;

    }
}
