/*

TemplateMo 585 Barber Shop - Versão Modernizada

https://templatemo.com/tm-585-barber-shop

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES ) - ATUALIZADAS            
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #FF7A00;  /* Laranja moderno */
  --primary-dark:                 #E56A00;  /* Laranja escuro */
  --secondary-color:              #1A1A2E;  /* Azul escuro elegante */
  --accent-color:                 #00D4AA;  /* Ciano vibrante */
  --section-bg-color:             #F8F9FA;  /* Cinza muito claro */
  --custom-btn-bg-color:          #1A1A2E;
  --custom-btn-bg-hover-color:    #FF7A00;
  --dark-color:                   #121212;  /* Preto suave */
  --p-color:                      #5A5A6E;  /* Cinza azulado */
  --border-color:                 #E0E0E0;  /* Borda mais suave */
  --link-hover-color:             #FF7A00;
  --gradient-primary:             linear-gradient(135deg, #FF7A00 0%, #FFAA4C 100%);
  --gradient-secondary:           linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  --shadow-light:                 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium:                0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-heavy:                 0 25px 60px rgba(0, 0, 0, 0.15);

  --body-font-family:             'Unbounded', cursive, sans-serif;
  --heading-font-family:          'Unbounded', cursive, sans-serif;

  --h1-font-size:                 82px;     /* Aumentado */
  --h2-font-size:                 52px;     /* Aumentado */
  --h3-font-size:                 36px;     /* Aumentado */
  --h4-font-size:                 30px;     /* Aumentado */
  --h5-font-size:                 26px;     /* Aumentado */
  --h6-font-size:                 22px;     /* Mantido */
  --p-font-size:                  18px;     /* Reduzido para melhor legibilidade */
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         24px;     /* Mais arredondado */
  --border-radius-small:          12px;     /* Mais arredondado */

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
  --font-weight-black:            900;

  --transition-fast:              0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal:            0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:              0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*---------------------------------------
  TYPOGRAPHY - MODERNIZADA               
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  position: relative;
}

h1 {
  font-size: var(--h1-font-size);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(255, 122, 0, 0.15);
  animation: fadeInUp 0.8s var(--transition-slow);
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: expandWidth 1s var(--transition-slow) 0.3s both;
}

h3 {
  font-size: var(--h3-font-size);
  color: var(--secondary-color);
}

h4 {
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
}

h5 {
  font-size: var(--h5-font-size);
  color: var(--secondary-color);
}

h6 {
  font-size: var(--h6-font-size);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: var(--font-weight-semibold);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.8;
}

a, 
button {
  touch-action: manipulation;
  transition: all var(--transition-fast);
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

a:hover {
  color: var(--link-hover-color);
}

a:hover::after {
  width: 100%;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  ANIMAÇÕES PERSONALIZADAS               
-----------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------------
  SECTION - MODERNIZADA               
-----------------------------------------*/
.section-padding {
  padding: 120px 60px;
  position: relative;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: var(--gradient-secondary);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
  z-index: 2;
}

.back-top-icon {
  font-size: var(--h2-font-size);
  animation: float 3s ease-in-out infinite;
}

/*---------------------------------------
  CUSTOM BLOCK BACKGROUND OVERLAY - ATUALIZADO               
-----------------------------------------*/
.custom-block-bg-overlay-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  transition: all var(--transition-normal);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-light);
}

.custom-block-bg-overlay-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.custom-block-bg-overlay-wrap:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.custom-block-bg-overlay-wrap:hover::before {
  opacity: 0.1;
}

.custom-block-bg-overlay-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  height: 100%;
  object-fit: cover;
  transform: rotate(8deg);
  transition: all var(--transition-slow);
}

.custom-block-bg-overlay-wrap:hover .custom-block-bg-overlay-image {
  transform: rotate(0deg) scale(1.1);
}

.custom-block-bg-overlay-wrap:hover .team-info {
  bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/*---------------------------------------
  CUSTOM BUTTON - DRAMATICAMENTE MELHORADO               
-----------------------------------------*/
.custom-btn {
  background: var(--gradient-secondary);
  border: 3px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all var(--transition-normal);
  padding: 16px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.2);
}

.custom-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
  border-radius: inherit;
}

.custom-btn:hover {
  color: var(--white-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.3);
  border-color: var(--primary-color);
}

.custom-btn:hover::before {
  opacity: 1;
}

.custom-border-btn {
  background: transparent;
  border: 3px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--gradient-secondary);
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
  background: transparent;
}

.custom-btn-bg-white:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-italic {
  font-style: italic;
  letter-spacing: 0;
}

/* Efeito de clique no botão */
.custom-btn:active {
  transform: translateY(-2px) scale(0.98);
}

/*---------------------------------------
  NAVIGATION - MODERNIZADA              
-----------------------------------------*/
.sidebar {
  background: var(--gradient-secondary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 60px 0 0;
  width: 280px;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
}

.sidebar-sticky {
  height: calc(100vh - 60px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.logo-image {
  width: 180px;
  height: auto;
  margin-bottom: 80px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  animation: fadeInUp 0.8s var(--transition-slow) 0.2s both;
}

#sidebarMenu .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  position: relative;
  padding: 15px 30px;
  margin: 8px 0;
  border-radius: var(--border-radius-large);
  transition: all var(--transition-normal);
  letter-spacing: 1px;
}

#sidebarMenu .nav-link.active, 
#sidebarMenu .nav-link:hover {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateX(10px);
}

#sidebarMenu .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: height var(--transition-normal);
}

#sidebarMenu .nav-link.active::before,
#sidebarMenu .nav-link:hover::before {
  height: 60%;
}

.navbar-toggler {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-large);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 222;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 30px;
  width: 65px;
  height: 65px;
  outline: none;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
  transition: all var(--transition-normal);
}

.navbar-toggler:hover {
  transform: rotate(180deg) scale(1.1);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  margin: auto;
  width: 30px;
  height: 3px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 3px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 10px;
}

/*---------------------------------------
  HERO - DRAMATICAMENTE MODERNIZADO       
-----------------------------------------*/
.hero-section {
  background-image: url('../images/client-doing-hair-cut-barber-shop-salon.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  padding-bottom: 0;
  min-height: 800px;
  border-bottom: none;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0.75;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s var(--transition-slow) 0.5s both;
}

.custom-block {
  background: var(--white-color);
  border: none;
  border-radius: var(--border-radius-medium);
  position: absolute;
  z-index: 3;
  bottom: 60px;
  right: 60px;
  padding: 40px;
  width: 320px;
  height: 320px;
  box-shadow: var(--shadow-heavy);
  animation: slideInRight 0.8s var(--transition-slow) 0.8s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.custom-block::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.custom-block:hover::before {
  opacity: 1;
}

.custom-block .custom-btn {
  background: var(--gradient-primary);
  margin-top: 20px;
  animation: pulse 2s infinite;
}

.custom-block .custom-btn:hover {
  background: var(--gradient-secondary);
  animation: none;
}

.custom-block-image {
  border: 5px solid var(--white-color);
  border-radius: 50%;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

/*---------------------------------------
  ABOUT - MODERNIZADA              
-----------------------------------------*/
.about-section h6 {
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
}

.about-section .custom-block-bg-overlay-image {
  width: 100%;
  max-height: 300px;
  filter: grayscale(20%);
}

.about-section .custom-block-bg-overlay-wrap {
  position: relative;
  animation: slideInLeft 0.8s var(--transition-slow) 0.3s both;
}

.team-info {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  position: absolute;
  bottom: -30px;
  right: 30px;
  left: 30px;
  margin: 0;
  padding: 25px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*---------------------------------------
  FEATURED - MODERNIZADO               
-----------------------------------------*/
.featured-section {
  background-image: url('../images/barber-customer-giving-high-five.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  text-align: center;
  padding: 150px 60px;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0.85;
}

.featured-section .container {
  position: relative;
  z-index: 2;
}

.featured-section h2 {
  color: var(--white-color);
  font-size: 64px;
  margin-bottom: 30px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.featured-section h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
}

.featured-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.featured-section strong {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.featured-section strong:hover {
  transform: translateY(-5px) scale(1.05);
  animation: none;
}

/*---------------------------------------
  SERVICES - MODERNIZADO             
-----------------------------------------*/
/*---------------------------------------
  SERVICES - VERSÃO CORRIGIDA             
-----------------------------------------*/
.services-thumb {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.services-thumb:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
}

.services-thumb:hover .services-info {
  border-color: var(--primary-color);
  border-width: 3px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.services-thumb:hover .services-image {
  transform: scale(1.1) rotate(2deg);
}

.services-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  transition: all var(--transition-slow);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* PREÇO CORRIGIDO - FUNDO TRANSPARENTE */
.services-thumb-price {
  background: rgba(255, 107, 0, 0.9); /* Fundo laranja semi-transparente */
  border-radius: var(--border-radius-large);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-left: auto;
  padding: 10px 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
  backdrop-filter: blur(2px); /* Efeito de vidro fosco */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Borda sutil */
  transition: all var(--transition-normal);
}

.services-thumb:hover .services-thumb-price {
  background: rgba(212, 90, 0, 0.95); /* Escurece levemente no hover */
  transform: translateY(-2px);
}

/* INFO JÁ ESTAVA CORRETO - MANTIDO */
.services-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border-radius: var(--border-radius-medium);
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 25px;
  padding: 30px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.services-info h4 {
  color: var(--secondary-color);
  font-size: 28px;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9); /* Melhor contraste */
}

.services-info p {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); /* Melhor contraste */
}
/*---------------------------------------
  PRICE LIST - MODERNIZADA             
-----------------------------------------*/
.price-list-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.price-list-thumb-wrap {
  padding-right: 60px;
  animation: slideInLeft 0.8s var(--transition-slow) 0.2s both;
}

.price-list-thumb {
  margin-bottom: 25px;
  padding: 25px;
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
  border-left: 5px solid transparent;
}

.price-list-thumb:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--primary-color);
}

.price-list-thumb:last-child {
  margin-bottom: 0;
}

.price-list-thumb h6 {
  color: var(--secondary-color);
  font-size: 20px;
  margin-bottom: 5px;
}

.price-list-thumb h6 strong {
  color: var(--primary-color);
  font-size: 24px;
  float: right;
}

.price-list-thumb p {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 0;
}

.price-list-thumb-divider {
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  flex: auto;
  height: 1px;
  margin: 20px 0;
}

.price-list-section .custom-block-bg-overlay-wrap {
  padding: 40px;
  animation: slideInRight 0.8s var(--transition-slow) 0.4s both;
}

/*---------------------------------------
  BOOKING - MODERNIZADO               
-----------------------------------------*/
.booking-section {
  background-image: url('../images/vintage-chair-barbershop.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0.9;
}

.booking-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  padding: 80px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*---------------------------------------
  CONTACT - MODERNIZADO               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
  filter: hue-rotate(320deg) saturate(1.2) contrast(1.1);
  box-shadow: var(--shadow-medium);
  height: 500px;
  border: none;
}

.contact-block-wrap {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.contact-block-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.contact-block {
  background: var(--gradient-secondary);
  border-radius: var(--border-radius-medium);
  transform: rotate(-5deg);
  height: 100%;
  padding: 40px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-block:hover {
  transform: rotate(0deg);
}

.contact-block h6 {
  color: var(--white-color);
  transform: rotate(5deg);
  margin-bottom: 30px;
  font-size: 24px;
}

.contact-block:hover h6 {
  transform: rotate(0deg);
}

.contact-block .custom-icon {
  background: var(--gradient-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.contact-block:hover .custom-icon {
  transform: scale(1.1) rotate(15deg);
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.contact-block p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/*---------------------------------------
  CUSTOM FORM - MODERNIZADO               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 30px;
  padding: 18px 25px;
  outline: none;
  transition: all var(--transition-normal);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: 16px;
  background: var(--white-color);
  font-family: var(--body-font-family);
}

.custom-form .form-control:focus {
  background: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  transform: translateY(-2px);
}

.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF7A00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.custom-form button[type="submit"] {
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  transition: all var(--transition-normal);
  margin-bottom: 0;
  padding: 18px 40px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.custom-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.3);
}

.custom-form button[type="submit"]:hover::before {
  opacity: 1;
}

/*---------------------------------------
  SITE FOOTER - MODERNIZADO              
-----------------------------------------*/
.site-footer {
  position: relative;
  padding: 100px 60px 60px;
  padding-top: 0;
  background: var(--secondary-color);
  color: var(--white-color);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gradient-primary);
}

.site-footer::after {
  display: none;
}

.site-footer-links {
  padding-left: 0;
  margin-bottom: 40px;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 15px;
}

.site-footer-link-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
}

.site-footer-link-item a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.site-footer strong {
  display: block;
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.site-footer strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

/*---------------------------------------
  SOCIAL ICON - MODERNIZADO               
-----------------------------------------*/
/*---------------------------------------
  SOCIAL ICON - VERSÃO CORRIGIDA (HORIZONTAL)               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row; /* ← GARANTE HORIZONTAL */
  justify-content: flex-start; /* ou center se quiser centralizado */
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Permite quebra de linha se necessário */
}

.social-icon-item {
  list-style: none;
  display: inline-block;
}

.social-icon-link {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white); /* CORRIGIDO: branco */
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.social-icon-link span {
  display: block;
  line-height: 1;
}

/* PARA O FOOTER (se estiver dentro do site-footer) */
.site-footer .social-icon {
  justify-content: flex-start; /* ou center para centralizar */
}

/* Responsividade */
@media screen and (max-width: 767px) {
  .social-icon {
    justify-content: center; /* Centraliza em mobile */
    gap: 12px;
  }
  
  .social-icon-link {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
}



/*---------------------------------------
  RESPONSIVE STYLES - ATUALIZADAS               
-----------------------------------------*/
@media screen and (max-width: 1400px) {
  .hero-section {
    min-height: 700px;
  }
  
  h1 {
    font-size: 72px;
  }
  
  h2 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 42px;
  }
  
  .section-padding {
    padding: 100px 40px;
  }
  
  .hero-section {
    padding: 60px 40px;
  }
  
  .custom-block {
    width: 280px;
    height: 280px;
    padding: 30px;
  }
  
  .featured-section {
    padding: 120px 40px;
  }
  
  .booking-form {
    padding: 60px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .section-padding {
    padding: 80px 30px;
  }
  
  .hero-section {
    padding: 50px 30px;
    min-height: 600px;
  }

  .custom-block {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 40px auto 0;
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 300px;
    animation: fadeInUp 0.8s var(--transition-slow) 0.6s both;
  }
  
  .custom-block-image {
    position: relative;
    top: -60px;
    margin-bottom: -40px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 40px;
    padding-top: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 25px;
    font-size: 18px;
  }
  
  .price-list-thumb-wrap {
    padding-right: 0;
    margin-bottom: 60px;
  }
  
  .featured-section h2 {
    font-size: 48px;
  }
  
  .featured-section p {
    font-size: 20px;
  }

  .booking-form {
    padding: 50px;
  }
  
  .google-map {
    height: 400px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --h1-font-size: 48px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
    --p-font-size: 16px;
  }
  
  .section-padding {
    padding: 60px 20px;
  }
  
  .hero-section {
    padding: 40px 20px;
    min-height: 500px;
  }
  
  .featured-section {
    padding: 80px 20px;
  }
  
  .featured-section h2 {
    font-size: 36px;
  }
  
  .featured-section p {
    font-size: 18px;
  }
  
  .services-image {
    height: 250px;
  }
  
  .services-info {
    margin: 15px;
    padding: 20px;
  }
  
  .services-info h4 {
    font-size: 22px;
  }
  
  .booking-form {
    padding: 40px 30px;
  }
  
  .contact-block {
    padding: 30px;
  }
  
  .site-footer {
    padding: 60px 30px 40px;
  }
  
  .site-footer-link-item {
    margin-right: 15px;
    margin-bottom: 10px;
  }
  
  .site-footer-link-item a {
    font-size: 14px;
  }
  
  .social-icon {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  
  .custom-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  .services-info h4 {
    font-size: 20px;
  }
  
  .services-thumb-price {
    font-size: 14px;
    padding: 8px 15px;
    top: 15px;
    right: 15px;
  }
  
  .price-list-thumb {
    padding: 20px;
  }
  
  .price-list-thumb h6 {
    font-size: 18px;
  }
  
  .price-list-thumb h6 strong {
    font-size: 20px;
  }

  .booking-form {
    padding: 30px 20px;
  }
  
  .contact-block-wrap {
    min-height: 200px;
  }
  
  .contact-block {
    padding: 25px;
  }
  
  .contact-block .custom-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  
  .contact-block strong {
    font-size: 16px;
  }
  
  .navbar-toggler {
    width: 55px;
    height: 55px;
    margin: 20px;
  }
  
  .logo-image {
    width: 150px;
    margin-bottom: 60px;
  }
}

/* Efeitos especiais para dispositivos com hover */
@media (hover: hover) and (pointer: fine) {
  .services-thumb:hover .services-thumb-price {
    transform: scale(1.1);
    transition: transform var(--transition-normal);
  }
  
  .price-list-thumb:hover h6 strong {
    color: var(--accent-color);
    transition: color var(--transition-normal);
  }
  
  .social-icon-link:hover {
    transform: translateY(-8px) rotate(15deg) scale(1.1);
  }
}

/* Suporte a modo escuro do sistema */
@media (prefers-color-scheme: dark) {
  :root {
    --white-color: #121212;
    --section-bg-color: #1a1a1a;
    --dark-color: #ffffff;
    --p-color: #b0b0b0;
    --border-color: #333333;
  }
  
  .services-info {
    background: rgba(26, 26, 26, 0.9);
  }
  
  .booking-form {
    background: rgba(26, 26, 26, 0.95);
  }
  
  .custom-form .form-control {
    background: #2a2a2a;
    border-color: #444;
    color: var(--p-color);
  }
  
  .custom-form .form-control:focus {
    background: #2a2a2a;
  }
}

/* Animações de entrada para elementos ao rolar */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
}