/* Style for P&L Asesores Ltda website */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0a0d10;
  --bg-card: #12161b;
  --bg-card-hover: #181d24;
  --bg-card-light: #1c222a;
  
  --gold-primary: #c5a059;
  --gold-light: #f3d498;
  --gold-dark: #917135;
  --gold-gradient: linear-gradient(135deg, #f3d498 0%, #c5a059 50%, #917135 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(243, 212, 152, 0.1) 0%, rgba(197, 160, 89, 0.05) 100%);
  --gold-glow: rgba(197, 160, 89, 0.35);
  --gold-glow-weak: rgba(197, 160, 89, 0.1);
  
  --text-main: #f5f7fa;
  --text-muted: #9ea4b0;
  --text-light: #e1e4ea;
  
  --border-gold: rgba(197, 160, 89, 0.25);
  --border-gold-focus: rgba(243, 212, 152, 0.6);
  --border-dark: rgba(255, 255, 255, 0.05);

  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 1px;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Reusable UI Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-title h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 15px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px var(--gold-glow-weak);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--gold-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.btn-outline:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

/* Gold Frame Ornament */
.gold-frame {
  position: relative;
  border: 1px solid var(--border-gold);
  padding: 30px;
  transition: var(--transition-smooth);
}

.gold-frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
}

.gold-frame::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 13, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(10, 13, 16, 0.95);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

header.scrolled .nav-container {
  height: 65px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 42px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-light);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.4) 0%, rgba(10, 13, 16, 0.95) 100%), 
              url('assets/hero-bg.jpg') no-repeat center center/cover;
  padding-top: 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  background: var(--gold-gradient-soft);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
  animation: pulse 3s infinite alternate;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 4rem;
  margin-top: 10px;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 35px;
  color: var(--text-light);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  z-index: 10;
}

.hero-logo-box {
  background: rgba(18, 22, 27, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(197, 160, 89, 0.05);
  animation: float 6s ease-in-out infinite;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-item i {
  color: var(--gold-light);
  font-size: 1.3rem;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.hero-feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 1px;
}

.hero-feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* About Us Section */
.about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.about-text p {
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.about-badge-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-wrapper {
  background: radial-gradient(circle, var(--bg-card) 60%, rgba(10, 13, 16, 0.4) 100%);
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
  text-align: center;
  padding: 40px;
}

.badge-icon {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.badge-wrapper h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080a0d 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px 30px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 160, 89, 0.05);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 5px 15px var(--gold-glow);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-main);
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1px;
}

/* Interactive Pre-evaluator Section */
.evaluator {
  background: var(--bg-dark);
}

.evaluator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.evaluator-header {
  background: var(--gold-gradient-soft);
  border-bottom: 1px solid var(--border-gold);
  padding: 30px;
  text-align: center;
}

.evaluator-header h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.evaluator-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  margin-top: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.evaluator-progress {
  height: 100%;
  background: var(--gold-gradient);
  width: 25%;
  transition: width 0.4s ease-in-out;
}

.evaluator-body {
  padding: 40px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

.question-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.option-btn {
  background: var(--bg-card-light);
  border: 1px solid var(--border-dark);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.option-btn:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.option-btn.selected {
  border-color: var(--gold-light);
  background: var(--gold-gradient-soft);
  color: var(--gold-light);
  font-weight: 600;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  background: var(--bg-card-light);
  border: 1px solid var(--border-dark);
  padding: 14px;
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-gold-focus);
  background: var(--bg-card-hover);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.evaluator-footer {
  padding: 25px 40px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  background: rgba(18, 22, 27, 0.2);
}

/* Result Screen Design */
.result-container {
  text-align: center;
}

.result-badge {
  font-size: 3.5rem;
  color: var(--gold-light);
  margin-bottom: 15px;
}

.result-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.result-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.result-box {
  background: var(--bg-card-light);
  border: 1px dashed var(--border-gold);
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 30px;
  text-align: left;
}

.result-box h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.result-box ul {
  list-style-type: none;
}

.result-box li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.result-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

/* Success Cases / Testimonials */
.testimonials {
  background: linear-gradient(180deg, #080a0d 0%, var(--bg-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(197, 160, 89, 0.15);
  position: absolute;
  top: 25px;
  left: 30px;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  font-style: italic;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info h4 {
  font-size: 1rem;
  color: var(--text-main);
}

.user-info p {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recovery-tag {
  margin-top: 15px;
  padding: 4px 10px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-block;
}

/* FAQs Section */
.faqs {
  background: var(--bg-dark);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question h3 {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Open Accordion State */
.faq-item.active {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* High enough to contain content */
  opacity: 1;
  padding-top: 10px;
}

/* Contact Section */
.contact {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #06080a 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 30px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.contact-detail h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-detail p {
  color: var(--text-main);
  font-size: 1rem;
}

.contact-detail a:hover {
  color: var(--gold-light);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Footer styling */
footer {
  background: #040507;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 55px;
  align-self: flex-start;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
  margin-top: 8px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-contact-list i {
  color: var(--gold-light);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

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

/* Scroll Triggered Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for stagger reveal */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 992px) {
  h1 { font-size: 2.8rem !important; }
  .hero h1 span { font-size: 3.2rem !important; }
  .hero-grid, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }
  .hero-logo-box {
    max-width: 300px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
  }
  .section {
    padding: 60px 0;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 50px 24px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Mock reCAPTCHA v2 Dark Theme */
.mock-recaptcha-box {
  width: 302px;
  height: 76px;
  background-color: #222222;
  border: 1px solid #3c3c3c;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 0 14px;
  font-family: Roboto, helvetica, arial, sans-serif;
  user-select: none;
}

.mock-recaptcha-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-recaptcha-checkbox-wrapper {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-recaptcha-checkbox {
  width: 24px;
  height: 24px;
  background-color: #333333;
  border: 2px solid #555555;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-recaptcha-checkbox:hover {
  border-color: #777777;
}

.mock-check-icon {
  color: #009944;
  font-size: 1.1rem;
  font-weight: 900;
  display: none;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}

.mock-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #4a90e2;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: none;
  animation: mock-spin 0.8s linear infinite;
}

@keyframes mock-spin {
  to { transform: rotate(360deg); }
}

.mock-recaptcha-checkbox.checked {
  background-color: transparent;
  border-color: transparent;
  cursor: default;
}

.mock-recaptcha-checkbox.checked .mock-check-icon {
  display: block;
  transform: scale(1);
}

.mock-recaptcha-checkbox.loading {
  cursor: default;
  border-color: transparent;
}

.mock-recaptcha-checkbox.loading .mock-spinner {
  display: block;
}

.mock-recaptcha-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
}

.mock-recaptcha-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
}

.mock-recaptcha-logo {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
}

.mock-recaptcha-brand-text {
  color: #9b9b9b;
  font-size: 0.5rem;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
}

.mock-recaptcha-links {
  display: flex;
  gap: 3px;
  font-size: 0.5rem;
  color: #9b9b9b;
}

.mock-recaptcha-links a {
  color: #9b9b9b;
  text-decoration: none;
}

.mock-recaptcha-links a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp Widget */
.whatsapp-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #1cbd56 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-widget:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ae06d 0%, #20cd5f 100%);
}

.whatsapp-float-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.whatsapp-float-content i {
  font-size: 1.6rem;
  line-height: 1;
}

.whatsapp-float-text {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float-widget {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
  }
  .whatsapp-float-content i {
    font-size: 1.4rem;
  }
  .whatsapp-float-text {
    font-size: 0.85rem;
  }
}



