/* rc-custom.css */

/* Typography & Reset */
:root {
  --primary-color: #2ea3f2;
  --primary-hover: #1f85c9;
  --bg-light: #f9fafb;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
}

/* Base Styles */
.rc-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.rc-section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* CSS Grid for Características */
.rc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.rc-feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.rc-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rc-feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.rc-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.rc-feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.rc-recommendation {
  font-size: 13px;
  color: #d97706;
  background: #fef3c7;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}

/* Modern Price Cards */
.rc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.rc-price-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rc-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.rc-price-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.rc-price-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.rc-price-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.rc-price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-price-currency {
  font-size: 20px;
  font-weight: 600;
  margin-right: 5px;
  margin-top: -15px;
}

.rc-price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.rc-price-features {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  font-size: 16px;
  color: var(--text-muted);
}

/* Payment Info Box */
.rc-payment-info {
  max-width: 600px;
  margin: 20px auto 60px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rc-payment-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.rc-payment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.rc-payment-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.rc-payment-list strong {
  font-weight: 600;
  color: var(--text-muted);
  display: inline-block;
  width: 120px;
}

.rc-payment-instruction {
  font-size: 14px;
  color: #047857;
  background: #d1fae5;
  padding: 15px;
  border-radius: 8px;
}

/* Updates Section */
.rc-updates-section {
  background: #111827;
  padding: 80px 20px;
  text-align: center;
}

.rc-updates-title {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.rc-updates-subtitle {
  color: #9ca3af;
  font-size: 18px;
  margin-bottom: 50px;
}

.rc-downloads-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.rc-download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rc-download-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  color: white;
}

.rc-download-icon {
  font-size: 24px;
}

/* Contact & Social */
.rc-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.rc-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.rc-social-item:hover {
  transform: translateY(-5px);
}

.rc-social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rc-social-icon.email { background: #ea4335; }
.rc-social-icon.whatsapp { background: #25d366; }
.rc-social-icon.phone { background: var(--primary-color); }
.rc-social-icon.teams { background: #464eb8; }

.rc-social-text {
  font-size: 15px;
  font-weight: 500;
}

/* Accordion */
.rc-accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.rc-details {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.rc-summary {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--bg-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rc-summary::-webkit-details-marker {
  display: none;
}

.rc-summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.rc-details[open] .rc-summary::after {
  transform: rotate(45deg);
}

.rc-details-content {
  padding: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Utilities */
.rc-main-btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(46, 163, 242, 0.3);
}

.rc-main-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(46, 163, 242, 0.4);
  color: white;
}

/* Enhanced Contact Form Styling */
#contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
}
#contact-form p {
  margin-bottom: 20px;
  clear: both;
}
#contact-form .et_pb_contact_field {
  width: 100%;
}
#contact-form input.input,
#contact-form textarea.input {
  width: 100%;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9fafb;
  color: #374151;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
#contact-form input.input:focus,
#contact-form textarea.input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.2);
  background-color: white;
}
#contact-form .et_contact_bottom_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
#contact-form .et_pb_contact_submit {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(46, 163, 242, 0.3);
}
#contact-form .et_pb_contact_submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Fix for dark backgrounds */
#contacto .rc-section-title,
#contacto .rc-social-text {
  color: #ffffff;
}
#contacto .rc-social-item {
  color: #ffffff;
}
