﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿.home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s ease;
  background: #E6D9B8;
  border-bottom: 3px solid #D4C7A5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 2px 4px rgba(0,0,0,0.1), inset 0 -2px 4px rgba(255,255,255,0.8);
}

.home-header.active {
  background: #D4C7A5;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.content-logo-home {
  transition: all 0.3s ease;
  position: relative;
}

.content-logo-home img {
  height: 35px;
  width: auto;
  transition: all 0.3s ease;
}

.content-logo-home:hover img {
  transform: scale(1.05);
}

.content-logo-home img[alt="{{$settings->nomesite}} Mobile"] {
  display: none;
  height: 30px;
}

.content-buttons-home {
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-buttons-home #logoutUser {
  color: #4A4A4A;
  font-size: 0.9rem;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(249, 243, 221, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #D4C7A5;
}

.content-buttons-home #logoutUser i {
  color: #dc3545;
  font-size: 0.8rem;
}

.content-buttons-home #logoutUser:hover {
  background: #dc3545;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.4);
}

.content-buttons-home #logoutUser:hover i {
  color: #fff;
}

.content-buttons-home .btn-bet {
  background: #4db6ac !important;
  color: #F9F3DD !important;
  border: 2px solid #4db6ac !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.content-buttons-home .btn-bet:hover {
  background: transparent !important;
  color: #4db6ac !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(77, 182, 172, 0.3) !important;
}

.content-buttons-home .btn-bet i {
  color: inherit !important;
  font-size: 0.8rem !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .content-buttons-home {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  
  .content-buttons-home .btn-bet,
  .content-buttons-home .btn-login,
  .content-buttons-home .btn-register {
    width: 100% !important;
    text-align: center !important;
  }
  
  .container-footer {
    padding: 20px 0 !important;
  }
}

.content-buttons-home .btn-login,
.content-buttons-home .btn-register {
  border: 2px solid #E6D9B8;
  background: transparent;
  padding: 8px 18px;
  width: auto;
  height: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: #E6D9B8;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 90px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-buttons-home .btn-register {
  border-color: #E6D9B8;
  background: #E6D9B8;
  color: #3D6D65;
}

.content-buttons-home .btn-register:hover,
.content-buttons-home .btn-register:active {
  background: transparent;
  color: #E6D9B8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 217, 184, 0.3);
}

.content-buttons-home .btn-login:hover,
.content-buttons-home .btn-login:active {
  background: #E6D9B8;
  color: #3D6D65;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 217, 184, 0.3);
}

/* FOOTER */
.container-footer {
  background: #E6D9B8 !important;
  border-top: 3px solid #D4C7A5 !important;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1), inset 0 2px 4px rgba(0,0,0,0.1), inset 0 -2px 4px rgba(255,255,255,0.8) !important;
  color: #4A4A4A !important;
  padding: 40px 0 !important;
}

.container-footer .footer {
  background: transparent !important;
}

.container-footer .content-footer {
  background: transparent !important;
  border: none !important;
}

.container-footer .item-footer {
  background: transparent !important;
}

.container-footer .text-payment h1,
.container-footer .text-payment h2 {
  color: #4A4A4A !important;
}

.container-footer .text-payment h2 strong {
  color: #4db6ac !important;
}

.container-footer .footer-nav-title {
  color: #4A4A4A !important;
  font-weight: 600 !important;
}

.container-footer .footer-nav-link {
  color: #4A4A4A !important;
  transition: color 0.3s ease !important;
}

.container-footer .footer-nav-link:hover {
  color: #4db6ac !important;
}

.container-footer .btn-app {
  background: #4db6ac !important;
  border: 2px solid #D4C7A5 !important;
  color: #F9F3DD !important;
  transition: all 0.3s ease !important;
}

.container-footer .btn-app:hover {
  background: #3D6D65 !important;
  border-color: #4db6ac !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(77, 182, 172, 0.4) !important;
}

.container-footer .btn-app i {
  color: #F9F3DD !important;
}

.container-footer .btn-app .btn-app-span small,
.container-footer .btn-app .btn-app-span h1 {
  color: #F9F3DD !important;
}

.container-footer .wpp-float {
  background: #4db6ac !important;
  border: 2px solid #D4C7A5 !important;
  color: #F9F3DD !important;
}

.container-footer .wpp-float:hover {
  background: #3D6D65 !important;
  border-color: #4db6ac !important;
}

.container-footer p {
  color: #4A4A4A !important;
  opacity: 0.9 !important;
}

.container-footer a {
  color: #4db6ac !important;
  transition: color 0.3s ease !important;
}

.container-footer a:hover {
  color: #3D6D65 !important;
}

/* HOME */
.container-home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../images/home/bg-home.png), var(--bg-primary) no-repeat;
  background-size: cover;
  padding-top: 60px;
}

/* APP DOWNLOAD SECTION */
.container-app {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(135deg, #4DC7A0 0%, #3D6D65 100%) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.content-app {
  flex: 1;
  max-width: 500px;
  color: #F9F3DD;
  text-align: center;
}

.content-app.img {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-app.img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.title-app {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F9F3DD;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-app {
  font-size: 1.1rem;
  color: rgba(249, 243, 221, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.container-buttons-app {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-app {
  background: rgba(249, 243, 221, 0.15);
  border: 2px solid #F9F3DD;
  color: #F9F3DD;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-app:hover {
  background: #F9F3DD;
  color: #3D6D65;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-app i {
  font-size: 1.2rem;
}

.btn-app-span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-app-span small {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}

.btn-app-span h1 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 768px) {
  .container-app {
    flex-direction: column;
    padding: 40px 20px;
    min-height: auto;
  }
  
  .title-app {
    font-size: 2rem;
  }
  
  .container-buttons-app {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-app {
    width: 100%;
    max-width: 280px;
  }
}
