/* ============================================
   DESIGN SYSTEM - CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --color-black: #000000;
  --color-brown: #5d4037;
  --color-gold: #D4A574;
  --color-gold-dark: #C19A6B;
  --color-white: #ffffff;
  --color-gray-light: #f6f6f6;
  --color-gray: #777;
  --color-gray-dark: #333;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--color-gold);
  color: var(--color-gray-dark);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-gray-dark);
}

body,
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
}

/* Compensate for fixed navbar */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 var(--spacing-md);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-gray-dark);
  letter-spacing: 1px;
  line-height: 1.2;
}
h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--color-gray-dark);
  line-height: 1.3;
}
h4 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-gray-dark);
  font-weight: 600;
  line-height: 1.4;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #000;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #5d4037;
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #000;
  margin-bottom: 20px;
  border: 0;
}
/* Navigation - Modernized */
#menu {
  padding: var(--spacing-md) 0;
  transition: all var(--transition-base);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

#menu.navbar-scrolled {
  padding: var(--spacing-sm) 0;
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

#menu.navbar-default {
  background-color: rgba(0, 0, 0, 0.85);
  border-color: rgba(231, 231, 231, 0);
  border-radius: 0;
  margin-bottom: 0;
}

/* Estilos específicos para o container da navbar */
#menu .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: all var(--transition-base);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.4));
}

#menu.navbar-scrolled .navbar-logo {
  height: 45px;
}
#menu.navbar-default .navbar-nav > li > a,
#menu.navbar-default .navbar-nav > li > .nav-link {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin: 6px 8px;
  letter-spacing: 0.8px;
  transition: all var(--transition-base);
  position: relative;
  display: inline-block;
}

#menu.navbar-default .navbar-nav > li > a:after,
#menu.navbar-default .navbar-nav > li > .nav-link:after {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold) 0%, var(--color-brown) 100%);
  content: "";
  transition: all var(--transition-base);
  border-radius: 1px;
  transform: translateX(-50%);
}

#menu.navbar-default .navbar-nav > li > a:hover,
#menu.navbar-default .navbar-nav > li > .nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

#menu.navbar-default .navbar-nav > li > a:hover:after,
#menu.navbar-default .navbar-nav > li > .nav-link:hover:after {
  width: 60%;
}

/* CTA Button Special Style */
.nav-cta .nav-link-cta {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-gray-dark) !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  margin: 4px 8px !important;
}

.nav-cta .nav-link-cta:after {
  display: none !important;
}

.nav-cta .nav-link-cta:hover {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5) !important;
  color: var(--color-gray-dark) !important;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after,
.navbar-default .navbar-nav > .active > .nav-link:after {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 4px !important;
  width: 60% !important;
  height: 2px !important;
  background: linear-gradient(to right, var(--color-gold) 0%, var(--color-brown) 100%) !important;
  content: "" !important;
  transition: all var(--transition-base) !important;
  transform: translateX(-50%) !important;
  border-radius: 1px !important;
}
.navbar-toggle {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  transition: all var(--transition-base);
}

.navbar-toggle .icon-bar {
  background-color: var(--color-white);
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
  margin: 4px 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--color-gold);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.section-title {
  margin-bottom: var(--spacing-xxl);
  animation: fadeInUp 0.6s ease-out;
}

.section-title h2 {
  position: relative;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, var(--color-black) 0%, var(--color-brown) 100%);
  height: 4px;
  width: 80px;
  bottom: 0;
  margin-left: -40px;
  left: 50%;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section-title p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--color-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-black);
  background-image: linear-gradient(to right, var(--color-black) 0%, var(--color-brown) 100%);
  padding: 14px 34px;
  letter-spacing: 1.5px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-custom::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 var(--transition-slow);
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: linear-gradient(to right, var(--color-brown) 0%, var(--color-black) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section - Modernized */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: url(../img/coffeeinclub.png) center center no-repeat;
  background-color: #e5e5e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  position: relative;
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
}

/* Disable fixed background on mobile for performance */
@media (max-width: 768px) {
  .intro {
    background-attachment: scroll;
  }
}

.intro .overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(93, 64, 55, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.intro .container {
  position: relative;
  z-index: 2;
}

/* Logo Container */
.logo-container {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.header-logo {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.logo-text {
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Hero Content - Glassmorphism Container */
.hero-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl) var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.headline-main {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.sub-headline {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Main Headline */
.main-headline {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  width: 100%;
}

.headline-top {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.headline-bottom {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.headline-small {
  color: white;
  font-family: "Telegraf", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.headline-medium {
  color: white;
  font-family: "Telegraf", sans-serif;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  width: 100%;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.headline-main {
  color: white;
  font-family: "Telegraf", sans-serif;
  font-size: clamp(48px, 8vw, 85px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 var(--spacing-md) 0;
  width: 100%;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

/* Sub Headline */
.sub-headline {
  color: rgba(255, 255, 255, 0.95);
  font-family: "HK Grotesk", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero CTA */
.hero-cta {
  margin-top: var(--spacing-lg);
  display: flex;
  justify-content: center;
}

/* Waiting List Button - Modernized */
.waiting-list-btn {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-gray-dark) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 18px 40px !important;
  border-radius: var(--radius-lg) !important;
  font-size: 15px !important;
  transition: all var(--transition-base) !important;
  box-shadow: var(--shadow-md) !important;
  position: relative;
  overflow: hidden;
}

.waiting-list-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.waiting-list-btn:hover::before {
  left: 100%;
}

.waiting-list-btn:hover {
  background: var(--color-gold-dark) !important;
  border-color: var(--color-gold-dark) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4) !important;
}

.waiting-list-btn:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 82px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: #000000;
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro-text {
  padding: var(--spacing-xxl) var(--spacing-md);
  padding-top: calc(var(--spacing-xxl) + 80px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
/* Features Section - Waiting List - Updated */
#features {
  background: var(--color-gray-light);
  padding: var(--spacing-xxl) 0;
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

#features .container {
  position: relative;
  z-index: 1;
}

/* Waiting List Form */
.waiting-list-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.waiting-list-form .form-group {
  margin-bottom: 25px;
}

.waiting-list-form .form-control {
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 0 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.waiting-list-form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(121, 85, 72, 0.25);
  background: white;
}

.waiting-list-form select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.waiting-list-form .btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.waiting-list-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.success-message h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
}

.position-info {
  background: linear-gradient(to right, #000 0%, #5d4037 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.position-info p {
  font-size: 18px;
  margin: 0;
}

.position-info strong {
  font-size: 24px;
  color: #D4A574;
}

.referral-info {
  margin: 30px 0;
  text-align: left;
}

.referral-info h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;
}

.referral-link-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.referral-link {
  flex: 1;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: #666;
}

.copy-btn {
  width: auto;
  height: auto;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  background: #000;
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: #5d4037;
  transform: translateY(-1px);
}

.referral-code {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

.referral-code strong {
  color: #000;
  font-size: 18px;
}

.share-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.share-info p {
  color: #666;
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Alert Styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  .waiting-list-form {
    padding: 30px 20px;
  }
  
  .success-message {
    padding: 30px 20px;
  }
  
  .referral-link-container {
    flex-direction: column;
  }
  
  .copy-btn {
    width: 100%;
  }
}
/* About Section */
#about {
  padding: 100px 0;
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #000 0%, #5d4037 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #000;
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
#about img {
  width: 520px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about p {
  line-height: 24px;
  margin: 30px 0;
}
/* Services Section */
#services {
  padding: 100px 0;
  background: linear-gradient(to right, #000 0%, #5d4037 100%);
  color: #fff;
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: #fff;
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #000 0%, #5d4037 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#services p {
  color: rgba(255, 255, 255, 0.75);
}
#services .service-desc {
  margin-bottom: 40px;
}
/* Portfolio Section */
#portfolio {
  padding: 100px 0;
}
.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(99, 114, 255, 0.8) 0%,
    rgba(92, 169, 251, 0.8) 100%
  );
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}
/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: #f6f6f6;
}
#testimonials i {
  color: #e6e6e6;
  font-size: 32px;
  margin-bottom: 20px;
}
.testimonial {
  position: relative;
  padding: 20px;
}
.testimonial-image {
  float: left;
  margin-right: 15px;
}
.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.testimonial-content {
  position: relative;
  overflow: hidden;
}
.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}
/* Contact Section - Modernized */
#contact {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-brown) 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
#contact .form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
  color: #777;
}
.form-control:-moz-placeholder {
  color: #777;
}
.form-control::-moz-placeholder {
  color: #777;
}
.form-control:-ms-input-placeholder {
  color: #777;
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}
#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: #000;
  background: #fff;
}
/* ============================================
   FAQ SECTION - Compact
   ============================================ */
.faq-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.faq-section .section-title {
  margin-bottom: var(--spacing-lg);
}

.faq-container {
  max-width: 900px;
  margin: var(--spacing-lg) auto 0;
  padding: 0 var(--spacing-md);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 165, 116, 0.3);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-sm);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-base);
  font-family: "Raleway", sans-serif;
}

.faq-question:hover {
  background: rgba(212, 165, 116, 0.05);
}

.faq-question-text {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--color-gray-dark);
  line-height: 1.3;
  flex: 1;
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-gold);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--color-gold);
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 var(--spacing-sm);
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 var(--spacing-sm) var(--spacing-md);
}

.faq-answer p {
  color: var(--color-gray);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.6;
  margin: 0;
  padding-top: var(--spacing-xs);
}

/* Footer Section - Modernized */
#footer {
  background: var(--color-gray-light);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#footer p {
  color: var(--color-gray);
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.3px;
}

#footer a {
  color: var(--color-black);
  transition: all var(--transition-fast);
  text-decoration: none;
}

#footer a:hover {
  color: var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
}

/* ============================================
   APP SCREENSHOTS SECTION - CAROUSEL
   ============================================ */
.app-screenshots-section {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.app-screenshots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: var(--spacing-xl) auto 0;
  padding: 0 var(--spacing-md);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--color-white);
  padding: var(--spacing-lg);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0 var(--spacing-sm);
  box-sizing: border-box;
  position: relative;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  animation: fadeInUp 0.6s ease-out;
}

.screenshot-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
  transition: all var(--transition-base);
}

.screenshot-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.screenshot-overlay {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.screenshot-category {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.screenshot-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.screenshot-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-sm);
  font-family: "Raleway", sans-serif;
}

.screenshot-description {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  font-size: 28px;
  color: var(--color-gray-dark);
  font-weight: 300;
}

.carousel-arrow:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
  color: var(--color-brown);
  border-color: var(--color-gold);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-prev {
  left: var(--spacing-md);
}

.carousel-arrow-next {
  right: var(--spacing-md);
}

/* Dots Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gray);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
  position: relative;
}

.carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  transition: transform var(--transition-base);
}

.carousel-dot:hover {
  border-color: var(--color-gold);
  transform: scale(1.2);
}

.carousel-dot.active {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.carousel-dot.active::before {
  transform: translate(-50%, -50%) scale(1);
  background: var(--color-white);
}

/* Desktop: Show 2-3 screenshots */
@media (min-width: 992px) {
  .carousel-slide {
    min-width: 100%;
    width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  .carousel-wrapper {
    overflow: hidden;
  }
  
  .screenshot-card {
    flex-direction: row;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .screenshot-content {
    text-align: left;
    max-width: none;
    flex: 1;
  }
  
  .screenshot-image-wrapper {
    flex-shrink: 0;
  }
  
  .screenshot-card {
    max-width: 900px;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and below */
@media (max-width: 992px) {
  .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
  
  .section-title h2 {
    font-size: clamp(28px, 5vw, 36px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header Mobile Styles */
  .logo-container {
    top: 15px;
    right: 15px;
  }
  
  /* Navigation Mobile Styles */
  .navbar-logo {
    height: 35px;
  }
  
  #menu {
    padding: var(--spacing-sm) 0;
  }
  
  #menu a.navbar-brand {
    padding: 5px 10px;
  }
  
  #menu.navbar-default .navbar-nav > li > a,
  #menu.navbar-default .navbar-nav > li > .nav-link {
    font-size: 13px;
    margin: 4px 8px;
    padding: 8px 12px;
  }
  
  .nav-cta .nav-link-cta {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }
  
  #menu.navbar-scrolled .navbar-logo {
    height: 40px;
  }
  
  .header-logo {
    width: 50px;
    height: 50px;
  }
  
  .logo-text {
    font-size: 12px;
  }
  
  .hero-content {
    padding: var(--spacing-lg) var(--spacing-md);
    margin: 0 var(--spacing-sm);
  }
  
  .headline-main {
    font-size: clamp(36px, 10vw, 48px);
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .headline-medium {
    font-size: clamp(28px, 6vw, 36px);
    text-align: center;
  }

  .headline-small {
    font-size: 16px;
  }
  
  .headline-top {
    justify-content: center;
  }
  
  .headline-bottom {
    justify-content: center;
  }
  
  .sub-headline {
    font-size: clamp(14px, 4vw, 16px);
    max-width: 100%;
    margin-bottom: var(--spacing-lg);
  }
  
  header .intro-text {
    padding: var(--spacing-xl) var(--spacing-sm);
    padding-top: calc(var(--spacing-xl) + 70px);
    min-height: 90vh;
  }
  
  .main-headline {
    text-align: center;
  }
  
  .sub-headline {
    text-align: center;
  }
  
  .waiting-list-btn {
    padding: 16px 32px !important;
    font-size: 14px !important;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
  }
  
  #about img {
    margin: 50px 0;
  }
  
  .section-title {
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
  }
  
  .section-title h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .section-title p {
    font-size: clamp(14px, 3vw, 16px);
  }
  
  #features {
    padding: var(--spacing-xl) 0;
  }
  
  #contact {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
  
  /* FAQ Mobile */
  .faq-section {
    padding: var(--spacing-lg) 0;
  }
  
  .faq-section .section-title {
    margin-bottom: var(--spacing-md);
  }
  
  .faq-container {
    padding: 0 var(--spacing-sm);
    margin-top: var(--spacing-md);
  }
  
  .faq-item {
    margin-bottom: var(--spacing-xs);
  }
  
  .faq-question {
    padding: var(--spacing-sm);
  }
  
  .faq-answer {
    padding: 0 var(--spacing-sm) !important;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 var(--spacing-sm) var(--spacing-sm) !important;
  }
  
  /* App Screenshots Mobile */
  .app-screenshots-section {
    padding: var(--spacing-xl) 0;
  }
  
  .carousel-container {
    padding: 0 var(--spacing-sm);
  }
  
  .carousel-wrapper {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
    opacity: 0.9;
  }
  
  .carousel-arrow:active {
    opacity: 0.7;
  }
  
  .carousel-arrow-prev {
    left: 5px;
  }
  
  .carousel-arrow-next {
    right: 5px;
  }
  
  .carousel-slide {
    padding: 0 var(--spacing-xs);
  }
  
  .screenshot-image-wrapper {
    max-width: 280px;
  }
  
  .screenshot-content {
    padding: 0;
    margin-top: var(--spacing-md);
  }
  
  .screenshot-title {
    font-size: clamp(20px, 5vw, 24px);
    margin-bottom: var(--spacing-xs);
  }
  
  .screenshot-description {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
  }
  
  .carousel-dots {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    gap: 8px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }
  
  .carousel-dot::before {
    width: 5px;
    height: 5px;
  }
  
  /* Touch-friendly improvements */
  .carousel-wrapper {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  
  .carousel-track {
    user-select: none;
    -webkit-user-select: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content {
    padding: var(--spacing-md);
    margin: 0;
  }
  
  .headline-main {
    font-size: clamp(32px, 12vw, 42px);
  }
  
  .sub-headline {
    font-size: clamp(13px, 4vw, 15px);
  }
  
  .waiting-list-btn {
    padding: 14px 28px !important;
    font-size: 13px !important;
  }
  
  .coffee-cards-grid {
    gap: var(--spacing-md);
    padding: 0 var(--spacing-xs);
  }
  
  .coffee-card {
    height: 380px;
  }
  
  .section-title h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  
  /* App Screenshots Small Mobile */
  .screenshot-image-wrapper {
    max-width: 240px;
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .carousel-arrow-prev {
    left: 2px;
  }
  
  .carousel-arrow-next {
    right: 2px;
  }
  
  .carousel-wrapper {
    padding: var(--spacing-sm);
  }
}

/* Coffee Cards Section - Modernized */
#features {
  background: var(--color-gray-light);
  padding: var(--spacing-xxl) 0;
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.coffee-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .coffee-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (min-width: 1200px) {
  .coffee-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.coffee-card {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out backwards;
  cursor: pointer;
  background: var(--color-white);
}

.coffee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(93, 64, 55, 0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  border-radius: var(--radius-lg);
}

.coffee-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.coffee-card:hover::before {
  opacity: 1;
}

.coffee-card-background {
  width: 100%;
  height: 100%;
  position: relative;
}

.coffee-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
  transition: background var(--transition-base);
}

.coffee-card:hover .coffee-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.coffee-card-content {
  width: 100%;
  text-align: left;
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.coffee-card:hover .coffee-card-content {
  transform: translateY(-5px);
}

.coffee-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.coffee-card-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-gold);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.coffee-card-description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.coffee-card-button {
  background: var(--color-gold);
  color: var(--color-gray-dark);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.coffee-card-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.coffee-card-button:hover::before {
  width: 300px;
  height: 300px;
}

.coffee-card-button:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.coffee-card-button:active {
  transform: translateY(0);
}

/* Layer de informações detalhadas - Modernized */
.coffee-card-detail-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  animation: scaleIn 0.3s ease-out;
  z-index: 10;
  border-radius: var(--radius-lg);
}

.coffee-card-detail-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
}

.coffee-card-close-button {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 11;
}

.coffee-card-close-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(90deg);
}

.coffee-card-detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.coffee-card-detail-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-gold);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.coffee-card-detail-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  max-height: 250px;
  padding-right: var(--spacing-sm);
}

/* Scrollbar personalizada para o texto detalhado */
.coffee-card-detail-description::-webkit-scrollbar {
  width: 4px;
}

.coffee-card-detail-description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.coffee-card-detail-description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.coffee-card-detail-description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Animação de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive for Coffee Cards */
@media (max-width: 768px) {
  .coffee-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-sm);
  }
  
  .coffee-card {
    height: 400px;
  }
  
  .coffee-card-title {
    font-size: 18px;
  }
  
  .coffee-card-subtitle {
    font-size: 14px;
  }
  
  .coffee-card-description {
    font-size: 13px;
  }
  
  .coffee-card-button {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .coffee-card-overlay {
    padding: var(--spacing-md);
  }
  
  .coffee-card-detail-layer {
    padding: var(--spacing-md);
  }
  
  .coffee-card-detail-title {
    font-size: 20px;
  }
  
  .coffee-card-detail-subtitle {
    font-size: 16px;
  }
  
  .coffee-card-detail-description {
    font-size: 14px;
    max-height: 200px;
  }
  
  .coffee-card-close-button {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* Email Verification Styles */
.email-verification-message {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 40px;
  margin: 20px 0;
  border: 2px solid #dee2e6;
  text-align: center;
}

.verification-icon {
  font-size: 60px;
  color: #007bff;
  margin-bottom: 20px;
}

.verification-info {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid #dee2e6;
  text-align: left;
}

.verification-info h4 {
  color: #5d4037;
  margin-bottom: 15px;
}

.verification-info ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.verification-info li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.verification-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.verification-info li:last-child {
  border-bottom: none;
}
