/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
  --bronze-solid: #a65e2e;
  --bronze-light: #d39666;
  --bronze-medium: #b8763d;
  --font-family: 'Raleway', Arial, sans-serif;
}

/* ========================================
   RESET E BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  padding-top: 80px; /* espaço para header fixo */
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(25, 25, 25, 0.9));
  backdrop-filter: blur(10px);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(166, 94, 46, 0.2);
  border-bottom: 1px solid rgba(166, 94, 46, 0.3);
  transition: all 0.3s ease;
}

.logo {
  background: transparent !important;
}

.header--hidden {
  transform: translateY(-100%);
}
  
.logo {
  width: 500px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(166, 94, 46, 0.3));
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav__link {
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border: 1.5px solid rgba(166, 94, 46, 0.4);
  border-radius: 25px;
  background: rgba(166, 94, 46, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family);
}

.nav__link:hover {
  border-color: var(--bronze-light);
  background: rgba(166, 94, 46, 0.2);
  transform: translateY(-2px);
  color: var(--bronze-light);
  box-shadow: 0 5px 15px rgba(166, 94, 46, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(166, 94, 46, 0.1);
  border: 1px solid rgba(166, 94, 46, 0.3);
  transition: all 0.3s ease;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #a65e2e, #d39666);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* ========================================
   RESPONSIVIDADE MOBILE
   ======================================== */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }
  
  .logo {
    width: 120px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    width: 280px;
    height: 100vh;
    padding: 80px 20px 20px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .nav.active {
    display: flex;
    transform: translateX(0);
  }
  
  .nav__link {
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }
}

/* ========================================
  FOOTER STYLES
  ======================================== */
.footer {
 background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(25, 25, 25, 0.95));
 color: #fff;
 padding: 80px 0 0;
 margin-top: auto;
 width: 100%;
 box-shadow: 0 -8px 25px rgba(166, 94, 46, 0.2);
 position: relative;
 border-top: 2px solid rgba(166, 94, 46, 0.3);
}

.footer::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 20% 30%, rgba(166, 94, 46, 0.1) 0%, transparent 50%),
             radial-gradient(circle at 80% 70%, rgba(211, 150, 102, 0.08) 0%, transparent 50%);
 opacity: 0.6;
 z-index: -1;
}

.footer__container {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
 gap: 50px;
 padding: 0 20px 60px;
 position: relative;
 z-index: 2;
}

.footer__section {
 display: flex;
 flex-direction: column;
}

.footer__logo {
 width: 120px;
 margin-bottom: 25px;
 filter: drop-shadow(0 4px 12px rgba(166, 94, 46, 0.3));
 transition: transform 0.3s ease;
}

.footer__logo:hover {
 transform: scale(1.05);
}

.footer__about {
 font-size: 15px;
 line-height: 1.7;
 color: #ccc;
 margin-bottom: 25px;
}

.footer__highlight {
 background: linear-gradient(135deg, #a65e2e, #d39666);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 font-weight: 600;
}

.footer__credentials {
 display: flex;
 flex-direction: column;
 gap: 12px;
 margin-top: 20px;
}

.footer__badge {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 10px 15px;
 background: rgba(166, 94, 46, 0.15);
 border-radius: 20px;
 border: 1px solid rgba(166, 94, 46, 0.3);
 transition: all 0.3s ease;
}

.footer__badge:hover {
 background: rgba(166, 94, 46, 0.25);
 transform: translateX(5px);
}

.badge__icon {
 font-size: 1.2rem;
}

.badge__text {
 font-size: 13px;
 font-weight: 600;
 color: var(--bronze-light);
}

.footer__heading {
 color: white;
 font-size: 20px;
 margin-bottom: 25px;
 position: relative;
 padding-bottom: 12px;
 font-family: var(--font-family);
 font-weight: 600;
}

.footer__heading::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 60px;
 height: 3px;
 background: linear-gradient(90deg, #a65e2e, #d39666, #b8763d);
 border-radius: 2px;
}

.footer__subheading {
 color: var(--bronze-light);
 font-size: 16px;
 margin-bottom: 15px;
 margin-top: 20px;
 font-weight: 600;
}

.footer__links {
 list-style: none;
 padding: 0;
 margin: 0;
}

.footer__links li {
 margin-bottom: 14px;
}

.footer__link {
 color: #ccc;
 text-decoration: none;
 transition: all 0.3s ease;
 display: inline-block;
 position: relative;
 padding-left: 20px;
 font-size: 14px;
}

.footer__link::before {
 content: '▶';
 position: absolute;
 left: 0;
 color: #a65e2e;
 transition: all 0.3s ease;
 font-size: 10px;
}

.footer__link:hover {
 color: #d39666;
 transform: translateX(5px);
}

.footer__link:hover::before {
 color: #d39666;
 transform: translateX(3px);
}

.footer__contact {
 font-style: normal;
 color: #ccc;
 line-height: 1.6;
}

.footer__contact p {
 display: flex;
 align-items: flex-start;
 margin-bottom: 18px;
 font-size: 14px;
}

.footer__icon {
 margin-right: 12px;
 font-style: normal;
 font-size: 1.1rem;
 min-width: 20px;
}

.footer__phone,
.footer__email {
 color: var(--bronze-light);
 text-decoration: none;
 transition: all 0.3s ease;
 font-weight: 500;
}

.footer__phone:hover,
.footer__email:hover {
 color: #d39666;
 text-decoration: underline;
}

.footer__hours {
 margin-top: 20px;
 padding: 15px;
 background: rgba(166, 94, 46, 0.1);
 border-radius: 15px;
 border-left: 4px solid var(--bronze-solid);
}

.footer__hours p {
 color: #ddd;
 font-size: 13px;
 line-height: 1.5;
 margin: 0;
}

/* ========================================
  SEÇÃO SOCIAL E NEWSLETTER
  ======================================== */
.footer__social-section {
 background: rgba(166, 94, 46, 0.08);
 padding: 40px 0;
 border-top: 1px solid rgba(166, 94, 46, 0.2);
 border-bottom: 1px solid rgba(166, 94, 46, 0.2);
}

.footer__social-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}

.footer__social-content {
 text-align: left;
}

.footer__social-title {
 font-size: 1.5rem;
 margin-bottom: 20px;
 background: linear-gradient(135deg, #a65e2e, #d39666);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 font-weight: 600;
}

.footer__social {
 display: flex;
 gap: 15px;
 flex-wrap: wrap;
}

.footer__social-link {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 50px;
 height: 50px;
 border-radius: 50%;
 background: rgba(166, 94, 46, 0.2);
 border: 2px solid rgba(166, 94, 46, 0.4);
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.footer__social-link::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transition: left 0.5s ease;
}

.footer__social-link:hover::before {
 left: 100%;
}

.footer__social-link:hover {
 background: linear-gradient(135deg, #a65e2e, #d39666);
 border-color: #d39666;
 transform: translateY(-3px) scale(1.1);
 box-shadow: 0 8px 20px rgba(166, 94, 46, 0.4);
}

.footer__social-link--whatsapp:hover {
 background: linear-gradient(135deg, #25D366, #128C7E);
 border-color: #25D366;
}

.footer__social-icon {
 fill: white;
 stroke: white;
 transition: all 0.3s ease;
 width: 22px;
 height: 22px;
 position: relative;
 z-index: 2;
}

.footer__social-link:hover .footer__social-icon {
 fill: #111;
 stroke: #111;
}

.footer__social-link--whatsapp:hover .footer__social-icon {
 fill: white;
 stroke: white;
}

/* Newsletter */
.footer__newsletter {
 text-align: center;
}

.footer__newsletter-title {
 font-size: 1.3rem;
 margin-bottom: 20px;
 color: white;
 font-weight: 600;
}

.footer__newsletter-form {
 display: flex;
 gap: 10px;
 margin-bottom: 15px;
 max-width: 400px;
 margin-left: auto;
 margin-right: auto;
}

.footer__newsletter-input {
 flex: 1;
 padding: 15px 20px;
 border: 2px solid rgba(166, 94, 46, 0.4);
 border-radius: 25px;
 background: rgba(166, 94, 46, 0.1);
 color: white;
 font-size: 14px;
 transition: all 0.3s ease;
 font-family: var(--font-family);
}

.footer__newsletter-input::placeholder {
 color: #999;
}

.footer__newsletter-input:focus {
 outline: none;
 border-color: var(--bronze-light);
 background: rgba(166, 94, 46, 0.15);
 box-shadow: 0 0 15px rgba(166, 94, 46, 0.3);
}

.footer__newsletter-btn {
 padding: 15px 25px;
 background: linear-gradient(135deg, #a65e2e, #d39666);
 color: #111;
 border: none;
 border-radius: 25px;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 font-size: 14px;
 min-width: 120px;
}

.footer__newsletter-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(166, 94, 46, 0.4);
 filter: brightness(1.1);
}

.footer__newsletter-disclaimer {
 font-size: 12px;
 color: #999;
 font-style: italic;
}

/* ========================================
  DIVIDER E BOTTOM
  ======================================== */
.footer__divider {
 height: 2px;
 background: linear-gradient(90deg, transparent, #a65e2e, #d39666, #b8763d, transparent);
 margin: 0 auto;
 width: 80%;
 border-radius: 2px;
}

.footer__bottom {
 padding: 30px 0;
 background: rgba(10, 10, 10, 0.8);
}

.footer__bottom-content {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 20px;
}

.footer__copyright {
 font-size: 14px;
 color: #999;
 line-height: 1.5;
}

.footer__group {
 color: var(--bronze-light);
 font-weight: 500;
}

.footer__bottom-links {
 display: flex;
 gap: 25px;
 flex-wrap: wrap;
}

.footer__bottom-link {
 color: #999;
 text-decoration: none;
 transition: all 0.3s ease;
 position: relative;
 font-size: 14px;
 padding: 5px 0;
}

.footer__bottom-link:hover {
 color: var(--bronze-light);
}

.footer__bottom-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, #a65e2e, #d39666);
 transition: width 0.3s ease;
}

.footer__bottom-link:hover::after {
 width: 100%;
}

.footer__ro-link {
 background: rgba(166, 94, 46, 0.1);
 padding: 8px 15px;
 border-radius: 15px;
 border: 1px solid rgba(166, 94, 46, 0.3);
 font-weight: 600;
}

.footer__ro-link:hover {
 background: rgba(166, 94, 46, 0.2);
 border-color: var(--bronze-light);
}

/* ========================================
  RESPONSIVIDADE MOBILE FOOTER
  ======================================== */
@media (max-width: 768px) {
 .footer {
   padding: 60px 0 0;
 }
 
 .footer__container {
   grid-template-columns: 1fr;
   gap: 40px;
   padding: 0 20px 40px;
 }
 
 .footer__logo {
   width: 120px;
 }
 
 .footer__credentials {
   flex-direction: row;
   gap: 10px;
 }
 
 .footer__badge {
   flex: 1;
   justify-content: center;
   text-align: center;
 }
 
 .footer__social-container {
   grid-template-columns: 1fr;
   gap: 30px;
   text-align: center;
 }
 
 .footer__social {
   justify-content: center;
 }
 
 .footer__newsletter-form {
   flex-direction: column;
   gap: 15px;
 }
 
 .footer__newsletter-input,
 .footer__newsletter-btn {
   width: 100%;
 }
 
 .footer__bottom-content {
   flex-direction: column;
   text-align: center;
   gap: 15px;
 }
 
 .footer__bottom-links {
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
 }
}