:root {
  --primary: #e65c6c; 
  --primary-hover: #cc4d5c;
  --secondary: #d4af37; 
  --dark: #1a1a1a;
  --dark-bg: #f4f7f6;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.05);
  --light: #f8f9fa;
  --white: #ffffff;
  --text-main: #333333;
  --text-muted: #6c757d;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
}

/* Navbar */
.navbar-clean {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar-clean .nav-link {
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 10px 15px;
}

.navbar-clean .nav-link:hover {
  color: var(--primary);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
}

.btn-outline-custom {
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  /* Use a stunning bright spa background */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 40px;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Cards (Courses & Products) */
.premium-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  background: var(--white);
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.premium-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.premium-card:hover img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-body-custom {
  padding: 25px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Split Section (Him / Her) */
.split-wrap {
  display: flex;
  flex-wrap: wrap;
}
.split-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.split-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 1;
}

.split-item:hover::before {
  background: rgba(0,0,0,0.5);
}

.split-item img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s ease;
}

.split-item:hover img {
  transform: scale(1.1);
}

.split-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.split-content h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Footer */
.footer-clean {
  background-color: var(--light);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Bottom Navigation Bar (Unified) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1050; /* Garantir que fique sobre outros elementos */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bottom-nav.nav-pro {
    background: #111; /* Cor escura para painel administrativo */
    border-top: 2px solid var(--secondary);
}

.bottom-nav .nav-item {
    text-decoration: none !important;
    color: #888 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 500;
    flex: 1;
    transition: all 0.2s;
}

.bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav .nav-item.active {
    color: var(--primary) !important;
}

.nav-pro .nav-item {
    color: #777 !important;
}

.nav-pro .nav-item.active {
    color: var(--secondary) !important;
}

/* Badge Fix */
.badge-notify {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff4d4d;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid #fff;
}

.nav-pro .badge-notify {
    border-color: #111;
}

/* Ajuste de padding no body para não cobrir conteúdo */
body {
    padding-bottom: 80px !important;
}
