:root {
  --primary: #0b2747;
  --white: #ffffff;
  --light: #f5f7fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  padding-top: 15px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  width: auto;
}


.nav a {
  margin-left: 20px;
  text-decoration: none;
  color:white;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #d4b88a;        
  color: #0b2747;

  padding: 16px 32px;
  border-radius: 6px;

  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;
  border: none;

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.btn:hover {
  background: #c3a978;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}


.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}


.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,184,138,0.45);
}


.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}


.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  width: 100%;
  min-height: 100vh;
  align-items: flex-end;
}


.hero-text {
  padding-bottom: 220px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 30px;
  opacity: 0.95;
}


.btn-hero {
  background: #d4b88a;
  color: #0b2747;
  padding: 16px 28px;
  font-size: 1.05rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
}


.hero-logo-bg {
  position: absolute;
  width: 900px;
  left: -80px; 
  z-index: 1;
}

.hero-doctor {
  position: relative;
  z-index: 2;
  height: 520px;
  width: auto;
}



.about {
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  padding: 100px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}


.about-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #d6b77c;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 24px;
}

.about-content h2 span {
  color: #d6b77c;
}

.about-content p {
  color: #cfd6e0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 16px;
}

.feature h4 {
  color: #c3a978;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature p {
  font-size: 14px;
  color: white;
}



.about-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
  background: #0b2747;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;

  background: #d6b77c;
  color: #071a2f;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
}

.experience-badge strong {
  font-size: 26px;
  display: block;
}

.experience-badge span {
  font-size: 12px;
}

.clinic-video {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  text-align: center;

  box-shadow:
    inset 0 80px 120px -60px rgba(11, 39, 71, 0.45),
    inset 0 -80px 120px -60px rgba(11, 39, 71, 0.45),
    inset 80px 0 120px -60px rgba(11, 39, 71, 0.35),
    inset -80px 0 120px -60px rgba(11, 39, 71, 0.35);
}

.clinic-video h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: white;
}
.section-tag {
  color:#c3a978
}


.video-wrapper {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  height: 520px;

  border-radius: 32px;
  overflow: hidden;

  
  box-shadow:
    0 25px 70px rgba(11, 39, 71, 0.45),
    0 0 60px rgba(21, 87, 165, 0.35);
}


.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  pointer-events: none;
}

/* VÍDEO */
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.services {
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  padding: 120px 0;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}

.services-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #d6b77c;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.services-header h2 span {
  color: #d6b77c;
}

.services-header p {
  color: #cfd6e0;
  font-size: 16px;
  line-height: 1.6;
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}



.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}



.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(214, 183, 124, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: #d6b77c;
  fill: none;
  stroke-width: 2;
}



.service-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #cfd6e0;
  line-height: 1.6;
}



.services-cta {
  margin-top: 60px;
  text-align: center;
}

.btn-services {
  background: #d6b77c;
  color: #071a2f;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.results {
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  padding: 120px 0;
}

.results-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}



.results-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.results-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #d6b77c;
  margin-bottom: 16px;
}

.results-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.results-header h2 span {
  color: #d6b77c;
}

.results-header p {
  color: #cfd6e0;
  font-size: 16px;
  line-height: 1.6;
}



.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}



.result-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
}



.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.result-images {
  position: relative;
}

.result-images::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.result-box {
  position: relative;
  height: 200px;
  background: #1b3553;
}

.result-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
}

.tag.gold {
  background: #d6b77c;
  color: #071a2f;
}



.result-info {
  padding: 20px 24px;
}

.result-info h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.result-info p {
  color: #cfd6e0;
  font-size: 14px;
}



.results-quote {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.04);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.results-quote p {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 12px;
}

.results-quote span {
  color: #d6b77c;
  font-size: 14px;
}


.professional {
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  padding: 120px 0;
}

.professional-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}


.professional-image {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b2747;
}

.professional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.professional-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;

  background: #d6b77c;
  color: #071a2f;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
}

.professional-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #d6b77c;
  margin-bottom: 16px;
}

.professional-content h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 8px;
}

.professional-content h2 span {
  color: #d6b77c;
}

.professional-content h4 {
  color: #cfd6e0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.professional-content p {
  color: #cfd6e0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}


.professional-highlights {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.professional-highlights li {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}


.btn-professional {
  display: inline-block;
  background: #d6b77c;
  color: #071a2f;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}



.testimonials {
  background: linear-gradient(180deg, #071a2f 0%, #0b2747 100%);
  padding: 120px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.testimonials-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #d6b77c;
  margin-bottom: 16px;
}

.testimonials-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.testimonials-header h2 span {
  color: #d6b77c;
}

.testimonials-header p {
  color: #cfd6e0;
  font-size: 16px;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #d6b77c;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  flex-grow: 1;
  color: #cfd6e0;
}

.testimonial-user {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.testimonial-user strong {
  color: #fff;
  font-size: 14px;
}

.testimonial-user span {
  display: block;
  font-size: 12px;
  color: #cfd6e0;
}


.google-rating {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.05);
  padding: 14px 22px;
  border-radius: 30px;
  color: #fff;
}

.contact-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #071a2f 0%,
    #0b2747 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
}

.contact-card strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.contact-card span {
  color: #cfd6e0;
  font-size: 14px;
  line-height: 1.5;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-box {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(11, 39, 71, 0.08);
  border-radius: 14px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: #c3a978;
}


.contact-whatsapp {
  margin-top: 10px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 16px;
  border-radius: 14px;

  background: #c9a76f;
  color: #0b2747;
  font-weight: 600;

  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 167, 111, 0.35);
}
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}

.section-header h2 span {
  color: #c9a76f;
}

.section-header p {
  margin-top: 12px;
  color: #cfd6e0;
  font-size: 15px;
}
.section-line {
  display: block;
  width: 40px;
  height: 3px;
  background: #c9a76f;
  margin: 0 auto 14px;
  border-radius: 3px;
}

.odontologia-footer {
  background: #051426;
  padding: 70px 20px 30px;
  color: #cfd6e0;
}

.odontologia-footer .footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 60px;
}


.footer-logo {
  max-width: 160px;
  margin-bottom: 0px;
}
.footer-col.brand {
  display: flex;
  flex-direction: column;
  gap: 6px; 
}

.brand p {
  margin: 0;     
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-col ul a {
  color: #cfd6e0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: #d4b88a;
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #d4b88a;
}

.social a:hover {
  background: #d4b88a;
}

.social a:hover svg {
  fill: #0b2747;
}
.contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact svg {
  width: 18px;
  height: 18px;
  fill: #d4b88a; 
  margin-top: 3px;
  flex-shrink: 0;
}

.contact span {
  font-size: 14px;
  line-height: 1.6;
}


.footer-bottom {
  max-width: 1300px;
  margin: 50px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color:white;
}

.footer-bottom a {
  color: #d4b88a;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {

  .hero-grid,
  .about-container,
  .professional-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text {
    padding-bottom: 60px;
  }

  .hero-image {
    margin-top: 40px;
    height: auto;
  }

  .hero-logo-bg {
    width: 420px;
  }

  .hero-doctor {
    height: 420px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .odontologia-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {

  .hero {
    height: auto;
    padding-top: 120px;
    align-items: flex-start;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    position: relative;  
    right: auto;
    bottom: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  .hero-text {
    padding-bottom: 0;    
    margin: 0 auto;
    max-width: 720px;
  }

  .hero-logo-bg {
    width: clamp(520px, 55vw, 520px);
    
  }

  .hero-doctor {
    height: clamp(320px, 45vh, 480px);
  }
}

@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #071a2f;
    padding: 30px 20px;

    display: none;
    flex-direction: column;
    gap: 18px;

    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .nav a {
    margin: 0;
    font-size: 16px;
  }

  .nav .btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  
  .nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    color: #fff;
  }

  .logo img {
    height: 90px;
  }


  .hero {
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding-top: 120px;        
    display: flex;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    align-items: flex-start;
  }

  .hero-image {
    order: 2;
    margin-top: 40px;
  }

  .services,
  .results,
  .professional,
  .testimonials,
  .contact-section {
    padding: 90px 0;
  }

  h2 {
    font-size: 32px !important;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }


  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image,
  .professional-image {
    height: 360px;
  }

 
  .video-wrapper {
    height: 300px;
    border-radius: 20px;
  }

  
  .contact-map iframe {
    min-height: 300px;
  }

    .odontologia-footer .footer-col {
    align-items: center;
    text-align: center;
  }


  .footer-logo {
    margin: 0 auto 12px;
  }

  
  .footer-col.brand p {
    margin: 0 auto;
    text-align: center;
  }

  
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    justify-content: center;
  }

 
  .contact li {
    justify-content: center;
    text-align: center;
  }

  .contact span {
    text-align: center;
  }

  
  .social {
    justify-content: center;
  }

}


@media (max-width: 480px) {

  .container {
    width: 92%;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .btn,
  .btn-hero,
  .btn-services,
  .btn-professional {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .hero-doctor {
    height: 280px;
  }

  .result-box {
    height: 150px;
  }

  .odontologia-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social {
    justify-content: center;
  }
}

.page-links-luzzani {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #071a2f, #0b2747);
}

/* RESET APENAS DA PÁGINA */
.page-links-luzzani * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* CONTAINER */
.page-links-luzzani .links-container {
  width: 100%;
  max-width: 420px;
  padding: 35px 22px;
  text-align: center;
  color: #ffffff;
}

/* LOGO — ESTILO INSTAGRAM */
.page-links-luzzani .links-container .logo {
  width: 150px;
  height: 150px;

  border-radius: 50%;
  object-fit: cover;

  display: block;
  margin: 0 auto 20px;

  background: #ffffff;
  padding: 1px; /* cria borda interna limpa */
}

/* NOME */
.page-links-luzzani .links-container .username {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* DESCRIÇÃO */
.page-links-luzzani .links-container .description {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.4;
}

/* LISTA DE LINKS */
.page-links-luzzani .links-container .links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* BOTÃO */
.page-links-luzzani .links-container .link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 15px;
  border-radius: 8px;

  background: #ffffff;
  color: #0b2747;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

/* ÍCONE */
.page-links-luzzani .links-container .link-btn i {
  font-size: 17px;
}

/* HOVER */
.page-links-luzzani .links-container .link-btn:hover {
  background: #d4b88a;
  color: #0b2747;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* RODAPÉ */
.page-links-luzzani .links-container footer {
  margin-top: 45px;
  font-size: 12px;
  opacity: 0.85;
}

/* LINK DEV */
.page-links-luzzani .links-container .dev-link {
  color: #d4b88a;
  font-weight: 600;
  text-decoration: none;
}

.page-links-luzzani .links-container .dev-link:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .page-links-luzzani .links-container .username {
    font-size: 24px;
  }

  .page-links-luzzani .links-container .link-btn {
    font-size: 16px;
  }
}
.page-links-luzzani .icon {
  display: flex;
  align-items: center;
}

.page-links-luzzani .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.page-links-luzzani i {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
  font-style: normal;
}

