/* 
* HostingMTA - Style Updates
* Author: v0
* Version: 1.0
*/

/* Mejoras generales de estilo */
body {
  font-family: var(--font-primary);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.2rem;
}

/* Mejoras para los planes de hosting */
.plan-card,
.vps-plan-card,
.detailed-plan-card {
  background: rgba(10, 17, 40, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(67, 97, 238, 0.3);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card:hover,
.vps-plan-card:hover,
.detailed-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.25);
  border-color: rgba(67, 97, 238, 0.6);
}

.plan-card.popular,
.vps-plan-card.popular,
.detailed-plan-card.popular {
  border-color: var(--accent);
  position: relative;
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
  z-index: 3;
}

.plan-name,
.vps-plan-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.plan-price,
.vps-plan-price {
  margin: 1.5rem 0;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.plan-features,
.vps-plan-features {
  text-align: left;
  margin: 1.5rem 0;
}

.plan-features li,
.vps-plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.plan-features li i,
.vps-plan-features li i {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-features li.unavailable,
.vps-plan-features li.unavailable {
  color: rgba(255, 255, 255, 0.5);
}

.plan-features li.unavailable i,
.vps-plan-features li.unavailable i {
  color: var(--danger);
}

/* Mejoras para la tabla de comparación */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(67, 97, 238, 0.3);
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 500;
}

.comparison-table tr:hover {
  background: rgba(67, 97, 238, 0.1);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Mejoras para el globo 3D */
.globe-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.globe-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.3) 0%, rgba(0, 245, 212, 0) 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Mejoras para las tecnologías soportadas */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(67, 97, 238, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.25);
}

.tech-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* Mejoras para las FAQ */
.faq-section {
  padding: 5rem 0;
  background-color: var(--dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(67, 97, 238, 0.3);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(10, 17, 40, 0.95);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: white;
}

.faq-icon {
  color: var(--accent);
  transition: transform 0.3s;
}

/* Estado cerrado por defecto */
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

/* Abrir usando la clase .open (no usar .active) */
.faq-item.open {
  box-shadow: 0 10px 25px rgba(0, 195, 255, 0.15);
  border-color: rgba(67, 97, 238, 0.6);
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

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

/* Neutralizar el .active que añade el sistema de animaciones (solo cuando NO está abierto) */
.faq-item.active:not(.open) .faq-answer {
  max-height: 0 !important;
  padding-bottom: 0 !important;
}

.faq-item.active:not(.open) .faq-icon i {
  transform: none !important;
}

/* Mejoras para la sección About Us */
.about-section {
  padding: 5rem 0;
  background-color: var(--dark);
}

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.about-content p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(10, 17, 40, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.about-stat .stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Mejoras para la sección de equipo */
.team-section {
  padding: 5rem 0;
  background-color: var(--dark-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.15);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.member-position {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.member-social {
  display: flex;
  gap: 1rem;
}

.member-social .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s;
}

.member-social .social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Mejoras para la sección de infraestructura */
.infrastructure-section {
  padding: 5rem 0;
  background-color: var(--dark);
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.infrastructure-item {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.infrastructure-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.15);
}

.infra-icon {
  width: 70px;
  height: 70px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent);
}

.infrastructure-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.infrastructure-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.data-centers-map {
  margin-top: 4rem;
  text-align: center;
}

.data-centers-map h3 {
  margin-bottom: 2rem;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-container img {
  width: 100%;
  display: block;
}

.data-center-marker {
  position: absolute;
  cursor: pointer;
}

.marker-dot {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.7);
  animation: pulse 2s infinite;
}

.marker-info {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 17, 40, 0.9);
  border-radius: 10px;
  padding: 1rem;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(67, 97, 238, 0.3);
  pointer-events: none;
}

.marker-info h4 {
  margin-bottom: 0.3rem;
  color: var(--accent);
}

.marker-info p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.data-center-marker.active .marker-info {
  opacity: 1;
  visibility: visible;
}

.marker-na {
  top: 35%;
  left: 25%;
}

.marker-eu {
  top: 30%;
  left: 48%;
}

.marker-asia {
  top: 45%;
  left: 75%;
}

/* Mejoras para la sección de certificaciones */
.certifications-section {
  padding: 5rem 0;
  background-color: var(--dark-blue);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certification-item {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.certification-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.15);
}

.certification-icon {
  width: 70px;
  height: 70px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent);
}

.certification-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.certification-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Mejoras para la sección de contacto */
.contact-section {
  padding: 5rem 0;
  background-color: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form {
  background: rgba(10, 17, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--light);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.map-container {
  margin-top: 3rem;
}

.map-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mejoras para el footer */
/* Botonera de redes sociales en footer */
.footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.footer .social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  font-size: .9rem;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.footer .social-btn i { font-size: 1rem; }
.footer .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.footer .social-btn.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.footer .social-btn.facebook { background: #1877f2; }
.footer .social-btn.twitter { background: #111; }
.footer .social-btn.youtube { background: #ff0000; }
.footer .social-btn.linkedin { background: #0a66c2; }

/* Mejoras para el footer */
.footer {
  background-color: rgba(10, 17, 40, 0.95);
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Métodos de pago más profesionales */
.footer .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer .payment-card {
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}

.footer .payment-card i {
  font-size: 1.75rem;
}

.footer .payment-label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer .payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 97, 238, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Colores de marca (icono) */
.footer .payment-card.visa i { color: #1a1f71; }
.footer .payment-card.mastercard i { color: #eb001b; }
.footer .payment-card.paypal i { color: #003087; }
.footer .payment-card.discover i { color: #ff6000; }
.footer .payment-card.amex i { color: #006fcf; }
.footer .payment-card.razorpay i { color: #528ff0; }
.footer .payment-card.stripe i { color: #6772e5; }
.footer .payment-card.bitcoin i { color: #f7931a; }
.footer .payment-card.mercadopago i { color: #00b1ea; }

/* Sutiles fondos por marca */
.footer .payment-card.visa { background: linear-gradient(160deg, rgba(26,31,113,.12), rgba(26,31,113,.05)); }
.footer .payment-card.mastercard { background: linear-gradient(160deg, rgba(235,0,27,.12), rgba(235,0,27,.05)); }
.footer .payment-card.paypal { background: linear-gradient(160deg, rgba(0,48,135,.12), rgba(0,48,135,.05)); }
.footer .payment-card.discover { background: linear-gradient(160deg, rgba(255,96,0,.12), rgba(255,96,0,.05)); }
.footer .payment-card.amex { background: linear-gradient(160deg, rgba(0,111,207,.12), rgba(0,111,207,.05)); }
.footer .payment-card.razorpay { background: linear-gradient(160deg, rgba(82,143,240,.12), rgba(82,143,240,.05)); }
.footer .payment-card.stripe { background: linear-gradient(160deg, rgba(103,114,229,.12), rgba(103,114,229,.05)); }
.footer .payment-card.bitcoin { background: linear-gradient(160deg, rgba(247,147,26,.12), rgba(247,147,26,.05)); }
.footer .payment-card.mercadopago { background: linear-gradient(160deg, rgba(0,177,234,.12), rgba(0,177,234,.05)); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: -30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .price {
    font-size: 2.5rem;
  }

  .plan-features li,
  .vps-plan-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .popular-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

/* ===== FAQ estilo Free (como hosting-plans free.html) ===== */
.faq-grid { display: grid; gap: 1rem; }
.faq-item {
  background: var(--card-bg, rgba(10,17,40,0.95));
  border-radius: 15px;
  border: 1px solid var(--border-color, rgba(255,255,255,0.12));
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--primary, #4361ee); }
.faq-question {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: rgba(10,17,40,0.98);
}
.faq-question h3 { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--light); opacity: 1; }
.faq-icon { color: var(--primary); transition: transform 0.3s ease; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(67,97,238,0.12); border: 1px solid rgba(67,97,238,0.25); }
.faq-item.open .faq-icon { background: rgba(67,97,238,0.2); }
.faq-answer { padding: 0 1.25rem; max-height: 0px; overflow: hidden; transition: max-height 0.35s ease; color: rgba(255,255,255,0.9); background: rgba(10,17,40,0.9); border-top: 1px solid rgba(255,255,255,0.06); }
.faq-item.open .faq-answer { padding: 0 1.25rem 1.25rem; }

/* Fix visual: colapsado verdadero aunque el ítem tenga .active por animación */
.faq-item:not(.open) .faq-answer { max-height: 0px; padding-bottom: 0; }
.faq-item:not(.open) .faq-question { background: rgba(10,17,40,0.98); }

/* ===== Rediseño FAQ compacto (match diseño de la captura) ===== */
/* FAQ Unificado (según estilo solicitado) */
/* Forzar layout estable y evitar reflujo extraño de grid heredado */
.faq-section .faq-grid { display: block; }
.faq-section { padding: 100px 0; }
.faq-section .faq-grid { max-width: 800px; margin: 50px auto 0; }
.faq-section .faq-grid > * { display: block !important; }
.faq-section .faq-item { display: block !important; background-color: var(--card-bg, rgba(15,25,65,0.8)); border-radius: 15px; margin-bottom: 20px; border: 1px solid var(--border-color, rgba(255,255,255,0.12)); overflow: hidden; transition: all 0.3s ease; }
.faq-section .faq-item:hover { border-color: var(--primary); }
.faq-section .faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-section .faq-question h3 { margin: 0; font-size: 1.1rem; color: var(--light); }
.faq-section .faq-icon { color: var(--primary); transition: all 0.3s ease; }
.faq-section .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-section .faq-item.open .faq-answer { padding: 0 20px 20px; max-height: 500px; }
.faq-section .faq-answer p { margin: 0; color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .faq-section .faq-grid { grid-template-columns: 1fr; }
  .faq-section .faq-question h3 { font-size: 1rem; }
}

/* ========= HOME: Sección "Todos nuestros planes incluyen cPanel" ========= */
#cpanel-benefits.hosting-benefits-section { padding: 90px 0; background: linear-gradient(180deg, #0a1128 0%, #0b1638 100%); }
#cpanel-benefits .cpanel-content { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: start; }
#cpanel-benefits .cpanel-info > p { line-height: 1.85; color: rgba(255,255,255,0.86); margin-bottom: 1rem; }
#cpanel-benefits .cpanel-features { margin: 1rem 0 1.25rem; }
#cpanel-benefits .panel-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 1rem; }
#cpanel-benefits .highlight-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 0.9rem; border-radius: var(--border-radius); }
#cpanel-benefits .highlight-item h4 { margin: 0 0 0.25rem 0; font-size: 1rem; }
#cpanel-benefits .highlight-item p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
#cpanel-benefits .cpanel-image { position: relative; }
#cpanel-benefits .cpanel-screenshot { box-shadow: 0 20px 40px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 992px) {
  #cpanel-benefits .cpanel-content { grid-template-columns: 1fr; gap: 2rem; }
}

/* ========= HOME: Tecnologías Soportadas (mejora visual) ========= */
.hosting-tech-section { background: linear-gradient(180deg, #0b1330 0%, #0a1128 100%); padding: 90px 0; }
.hosting-tech-section .tech-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
.hosting-tech-section .tech-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.35); transform: translateY(-8px); }
.hosting-tech-section .tech-icon { color: #7cc4ff; }
.hosting-tech-section .tech-card h3 { color: #eaf2ff; }

/* ========= Ajustes tipográficos generales para legibilidad ========= */
.section-subtitle { color: rgba(231,238,255,0.78); line-height: 1.75; }

/* ========= Separación y responsividad para Planes de Hosting ========= */
/* Home */
.cpanel-section { padding-bottom: 90px; }
.plans-section { padding-top: 70px; }
.plans-section .section-title { margin-bottom: 0.75rem; }
.plans-section .section-subtitle { max-width: 820px; margin-left: auto; margin-right: auto; }

/* Hosting Plans page */
.cpanel-demo-section { padding-bottom: 90px; }
.pricing-toggle-section { padding-top: 60px; padding-bottom: 10px; }
.comparison-section { padding-top: 100px; padding-bottom: 90px; }

/* Centrado del título y contenido del bloque de cPanel en móviles */
@media (max-width: 768px) {
  .cpanel-section .cpanel-content { grid-template-columns: 1fr !important; }
  .cpanel-section .cpanel-info { text-align: center; }
  .cpanel-section .cpanel-info h2 { text-align: center; }
  .cpanel-section .highlight-banner { justify-content: center; }
  .plans-section { padding-top: 64px; padding-bottom: 80px; }
  .plans-grid { gap: 1rem; }
  .game-server-card { padding: 1rem 1.25rem; }
  .server-name { font-size: 1.25rem; }
  .server-description { font-size: 0.95rem; }
  .server-price .price { font-size: 1.9rem; }
  .server-features li { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .server-price .price { font-size: 1.7rem; }
  .plans-section .section-title { font-size: 1.6rem; }
  .plans-section .section-subtitle { font-size: 0.95rem; }
}

/* ========= Hosting Free: corregir espacios y armonizar colores ========= */
/* Reducir espacios verticales exagerados y unificar fondos en Free */
.free-tight-spacing .features-section,
.free-tight-spacing .how-it-works,
.free-tight-spacing .cpanel-demo,
.free-tight-spacing .testimonials,
.free-tight-spacing .comparison-section,
.free-tight-spacing .stats-section { padding-top: 80px !important; padding-bottom: 80px !important; }

/* Botones y tarjetas con contraste suave pero profesional */
.free-theme .feature-item,
.free-theme .step-item,
.free-theme .testimonial-item,
.free-theme .stat-item,
.free-theme .cpanel-feature { background: rgba(19,28,51,0.85) !important; border-color: rgba(126, 154, 255, 0.12) !important; }
.free-theme .feature-item:hover,
.free-theme .step-item:hover,
.free-theme .testimonial-item:hover,
.free-theme .stat-item:hover,
.free-theme .cpanel-feature:hover { border-color: #5aa1ff !important; }

