/* ======= Oficina Pro Specific Styles ======= */

/* CSS Variables for Oficina Theme */
:root {
  --oficina-primary: #f97316; /* Orange */
  --oficina-secondary: #ea580c; /* Dark Orange */
  --oficina-dark: #dc2626; /* Red */
  --oficina-light: #fed7aa; /* Light Orange */
  --oficina-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --oficina-gradient-dark: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

/* ======= Hero Section ======= */
#hero-product {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

#hero-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--oficina-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--oficina-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: var(--oficina-gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--oficina-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  margin-top: 5px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero-primary {
  background: var(--oficina-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Graphics */
.hero-graphic {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  color: white;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  font-weight: 600;
}

.hero-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--oficina-gradient);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.main-card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.main-card-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.main-card-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ======= Features Section ======= */
.features {
  padding: 80px 0;
  background: #fafafa;
}

.features-badge {
  display: inline-block;
  background: var(--oficina-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.feature-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--oficina-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-list li {
  padding: 5px 0;
  color: #333;
  font-size: 14px;
}

/* ======= Benefits Section ======= */
.benefits {
  padding: 80px 0;
  background: white;
}

.benefits-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}

.benefits-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--oficina-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.benefit-text p {
  color: #666;
  line-height: 1.6;
}

.benefits-metrics {
  position: relative;
  height: 400px;
}

.metric-float {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.metric-float:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.metric-float:nth-child(2) {
  top: 40%;
  right: 10%;
  animation-delay: 1.5s;
}

.metric-float:nth-child(3) {
  bottom: 10%;
  left: 30%;
  animation-delay: 3s;
}

.metric-float-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.metric-float-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--oficina-primary);
  margin-bottom: 5px;
}

.metric-float-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ======= Pricing Section ======= */
.pricing {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-badge-modern {
  display: inline-block;
  background: var(--oficina-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Pricing Cards */
.pricing-card-buy,
.pricing-card-subscription {
  background: white;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card-buy:hover,
.pricing-card-subscription:hover {
  transform: translateY(-5px);
}

.popular-badge-subscription {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oficina-gradient);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.buy-header,
.subscription-header {
  text-align: center;
  margin-bottom: 30px;
}

.buy-header h3,
.subscription-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.buy-subtitle,
.subscription-subtitle {
  color: #666;
  font-size: 16px;
}

.buy-price {
  text-align: center;
  margin-bottom: 30px;
}

.buy-price-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.buy-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--oficina-primary);
  margin-bottom: 10px;
}

.buy-price-info {
  font-size: 14px;
  color: #666;
}

.subscription-price {
  text-align: center;
  margin-bottom: 30px;
}

.subscription-price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--oficina-primary);
}

.subscription-price-period {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.pricing-features-oficina {
  margin-bottom: 30px;
}

.feature-item-oficina {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px 0;
}

.feature-check-oficina {
  color: var(--oficina-primary);
  margin-right: 12px;
  font-size: 18px;
}

.feature-item-oficina span {
  font-size: 16px;
  color: #333;
}

.pricing-button-oficina {
  text-align: center;
}

.btn-pricing-oficina {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-buy {
  background: var(--oficina-gradient);
  color: white;
  border: 2px solid transparent;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-subscription {
  background: var(--oficina-gradient);
  color: white;
  border: 2px solid transparent;
}

.btn-subscription:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: white;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--oficina-light);
  border-radius: 15px;
}

.pricing-footer p {
  margin: 0;
  color: #333;
  font-size: 16px;
}

/* ======= CTA Section ======= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--oficina-gradient);
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  color: white;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ccc;
}

.cta-feature i {
  color: var(--oficina-primary);
  font-size: 20px;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .benefits-content h2 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-features {
    gap: 15px;
  }
  
  .hero-graphic {
    height: 300px;
  }
  
  .floating-card {
    padding: 15px;
  }
}