/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color-white);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Hero Section ===== */
#hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right, #0077ff, #00c6ff);
  color: #fff;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content p {
  font-weight: 300;
  margin-bottom: 25px;
}

.btn {
  background-color: #fff;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

/* ===== Sections ===== */
section {
  padding: 80px 10%;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ===== Footer ===== */
footer {
  background-color: var(--footer-bg);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Formatações Gerais */
.container {
  
}

.wrapper{
  max-width: 1200px;   /* You can adjust this: 1100, 1280, or 1440px */
  width: 100%;
  margin: 0 auto;
}
i{
    font-style: normal;
}

/*/* Icons inside buttons or links */
a i,
button i {
  margin-right: 8px;
}

/* Adjust icon size globally */
.fa-solid,
.fa-brands {
  font-size: 1rem;
}




/*Top Navbar*/
.navbar-top{
    height: 40px;
    background-color: var(--footer-bg);
}
.nav-links{
    display: flex;
    justify-content: space-between;
    
}
.container .links{
    display: flex;
    font-size: 0.8885rem;
    /* color: var(--text-color-white) !important; */
    /* padding: 20px; */
    align-items: center;
}

.container .links .link-item a{
    color: #ffff;

}
.container .links .link-item{
    margin-right: 30px;
    
}

.social-links{
    display: flex;
    align-items: center;
    margin: 10px;
    gap: 10px;
}
.social-link i{
  color: #ffff;
}


/*Nav Dropdown Menu*/
nav {
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  background: #fff;
  box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 580px;
  position: relative;
}
nav .logo {
  position: relative;
  float: left;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  font-size: 22px;
  font-weight: 900;
  color: var(--footer-bg);
}
nav .logo span {
  color: #0077ff;
}
nav .logo:hover {
  background: #ccd9ff;
}
nav .links {
  float: right;
  margin-right: 30px;
  position: relative;
}
nav .links li {
  float: left;
  list-style: none;
  position: relative;
  margin: 10px;
  display: inline-block;
}
nav .links li > a {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  height: 30px;
  text-decoration: none;
  color: var(--footer-bg);
}
nav .links li > a:hover {
  color: #fff;
  background: var(--primary-hover);
  border-radius: 2px;
}
nav .links li > a[class^="trigger-"] {
  padding-right: 40px;
}
nav .links li > a .arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 35%;
  text-align: center;
  right: 10px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.3) transparent;
}
nav .links li > a .arrow:after {
  content: "";
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  top: -10px;
  left: -15px;
  position: absolute;
  height: 15px;
}
nav .links li ul {
  position: absolute;
  left: 0;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: none;
  min-width: 250px;
}
nav .links li ul > li {
  clear: both;
  list-style: none;
  display: block;
  padding: 0 10px;
  margin: 0;
  width: 100%;
}
nav .links li ul > li:hover {
  background: var(--primary-hover);
}
nav .links li ul > li:hover > a {
  background: var(--primary-hover);
  color: #fff;
}
nav .links li:hover > .drop {
  display: block;
  animation: fadeInRight 0.3s ease;
  -webkit-animation: fadeInRight 0.3s ease;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}



:root {
  /* --primary-color: #0077ff; */
  /* --text-color: #fff; */
  --max-width: 1200px;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: var(--text-color);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Slides com efeito zoom + fade */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 10s ease-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Overlay escuro */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Botões de navegação */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Indicadores */
.indicators {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
}

/* Conteúdo do Hero */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.hero-content .btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  max-width: 200px;
}

.hero-content .btn:hover {
  background: #005ecc;
  transform: translateY(-2px);
}










.products {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.products .section-subtitle {
  font-size: 1rem;
  color: #555;
}

.products .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* === Ajuste fino de largura e aparência dos cards === */
.product-card {
  /*flex: 0 0 calc((1200px - 3 * 20px) / 4); /* 4 cards visíveis com gap de 20px */
  flex: 0 0 calc((100% - 3*20px) / 4); /* 4 cards por linha, mas será mais flexível */
  height: 470px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0.95;
  transform: scale(0.98);
  transition: all 0.4s ease;
  cursor: pointer; /* cursor pointer ao passar o mouse */
}

.product-card:hover {
  transform: scale(1.03);
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 210px);
  padding: 15px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.product-header h3 {
  font-size: 1rem;
  color: #222;
}

.price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0077ff;
}

.rating {
  font-size: 0.9rem;
  color: #0077ff;
  margin-bottom: 8px;
}

.rating .reviews {
  color: #555;
  margin-left: 5px;
}

.desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 8px;
}

.time {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 5px;
}

.product-info hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 8px 0;
}

/* === Ajuste do fundo do card e espaçamento inferior === */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* empurra para o fim sem deixar espaço sobrando */
  padding-top: 8px;
}

.location {
  font-size: 0.9rem;
  color: #0077ff;
}

.btn-reservar {
  background: #0077ff;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-reservar:hover {
  background: #005ecc;
}

/* === Setas de navegação externas === */
.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0077ff;
  font-size: 32px;
  cursor: pointer;
  z-index: 15;
  transition: transform 0.3s, color 0.3s;
}

.product-nav:hover {
  transform: translateY(-50%) scale(1.2);
  color: #005ecc;
}

.product-nav.prev {
  left: 40px;
}
.product-nav.next {
  right: 40px;
}

/* Indicadores */
.carousel-indicators {
  text-align: center;
  margin-top: 25px;
}

.carousel-indicators .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-indicators .dot.active,
.carousel-indicators .dot:hover {
  background: #0077ff;
}

/* Botão explorar */
.explore-btn {
  text-align: center;
  margin-top: 35px;
}

.explore-btn .btn {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.explore-btn .btn:hover {
  background: #005ecc;
}








/* ===========================
   PRELOADER (fundo branco)
=========================== */

#preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* fundo branco */
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .preloader-inner {
  width: 160px;
  height: 160px;
}

/* Impede scroll durante carregamento */
body.preloading {
  overflow: hidden;
}


.hero {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body:not(.preloading) .hero {
  opacity: 1;
  transform: translateY(0);
}







/*Testemunhos*/
:root {
  --secondary-blue: #0037ff;
}

.testimonials-section {
  background: #f8faff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.testimonials-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.left-content {
  flex: 1;
  min-width: 300px;
}

.left-content span {
  color: var(--secondary-blue);
  font-weight: 700;
}

.left-content p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-secondary {
  background: var(--secondary-blue);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 20px; /* espaçamento extra */
}
.btn-secondary:hover {
  opacity: 0.9;
}

.right-content {
  flex: 1.2;
  min-width: 350px;
  position: relative;
}

.right-content span {
  color: var(--secondary-blue);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.6, 0, 0.2, 1);
}

.testimonial-item {
  min-width: 100%;
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  align-items: center;
  gap: 25px;
}

.testimonial-profile {
  position: relative;
}

.testimonial-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--secondary-blue);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-text h4 {
  margin-top: 10px;
  font-weight: 700;
}
.testimonial-text span {
  display: block;
  color: #666;
  margin-bottom: 15px;
}

.socials {
  display: flex;
  gap: 10px;
}
.socials i {
  background: var(--secondary-blue);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}
.socials i:hover {
  transform: scale(1.1);
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-blue);
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #002cd1;
}
.testimonial-prev { left: -50px; }
.testimonial-next { right: -50px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.testimonial-dots button.active {
  background: var(--secondary-blue);
}

/* Responsividade */
@media (max-width: 900px) {
  .testimonials-section .container {
    flex-direction: column;
  }
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-prev { left: 10px; }
  .testimonial-next { right: 10px; }
}




/*_____________________________Equipe*/
/* ======= TEAM SECTION ======= */
.team-section {
  background: var(--primary-color);
  padding: 60px 5%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.team-header p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/* WRAPPER E CONTAINER */
.team-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.team-carousel-container {
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 12px; /* menor gap */
  will-change: transform;
}

/* CARD */
.team-card {
  flex: 0 0 calc(25% - 9px); /* 4 cards completos visíveis */
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.team-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nome e cargo */
.team-card h3 {
  font-size: 1.05rem;
  margin: 8px 0 4px;
  color: #fff;
}
.team-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

/* SOCIAL LINKS - ícones dentro de círculos */
.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: var(--secondary-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* SETAS */
.team-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 28px;
  transition: 0.3s ease;
  z-index: 10;
}

.team-btn.prev { left: -45px; }
.team-btn.next { right: -45px; }

.team-btn:hover {
  color: var(--secondary-blue);
  transform: translateY(-50%) scale(1.15);
}

/* DOTS */
.team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.team-dots button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s ease;
}
.team-dots button.active {
  background: var(--secondary-blue);
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .team-card { flex: 0 0 calc(33.333% - 8px); }
  .team-btn.prev { left: -35px; }
  .team-btn.next { right: -35px; }
}

@media (max-width: 768px) {
  .team-card { flex: 0 0 calc(50% - 6px); }
  .team-btn { display: none; }
}

@media (max-width: 480px) {
  .team-card { flex: 0 0 100%; }
}










.contact-section {
  padding: 80px 8%;
  background-color: #f8f9fb;
  font-family: "Poppins", sans-serif;
  color: #222; /* ✅ General site text color */
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: stretch; /* ✅ makes both columns equal height */
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2rem;
  color: #1e242b;
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 1.2rem;
  color: #00bfff;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-info p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 420px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #222; /* ✅ Readable text */
  font-size: 0.95rem;
}

.contact-details i {
  color: #00bfff;
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-btn {
  display: inline-block;
  background-color: #005bff;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #00bfff;
}

.contact-map {
  width: 100%;
  height: 100%; /* ✅ fills the entire column height */
}

.contact-map iframe {
  width: 100%;
  height: 100%; /* ✅ fills full height */
  min-height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: left;
  }

  .contact-map iframe {
    height: 350px;
  }
}






















.footer {
  background-color: #1e242b;
  color: #fff;
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
  text-align: left; /* ✅ Ensures all text aligns left */
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ Keeps content aligned left inside each column */
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 25px;
  max-width: 260px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00bfff;
}

.contact-info li {
  color: #ccc;
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.4;
}

.contact-info i {
  color: #00bfff;
  font-size: 1rem;
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #005bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #00bfff;
}

.footer-bottom {
  border-top: 1px solid #2f3b46;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom a {
  color: #00bfff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ✅ Responsive adjustments (still left-aligned) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    align-items: flex-start;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }
}




