/* **************************************************
   ** Custom Stylesheet – CloudARG
   ** Estilos personalizados para WHMCS Six
************************************************** */

/* === Header === */
.navbar-main {
  margin-bottom: 0;
  background-color: #25a2c7;
  border: 0;
  min-height: 38px;
  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
}

h2 {
  font-size: 20px;
}

/* === Botón de WhatsApp === */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  animation: bounce 2s infinite;
  z-index: 1000;
}

.whatsapp-button:hover {
  background-color: #1EBE57;
  transform: translateY(-2px);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* Tooltip del botón de WhatsApp */
.whatsapp-tooltip {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 15px;
  position: absolute;
  z-index: 1;
  bottom: 70px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-button:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Animación de salto */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* === Sección de Precios === */
.pricing-container {
  text-align: center;
}

.pricing-container h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing-container .description {
  font-size: 1em;
  color: #777;
  margin-bottom: 20px;
}

.pricing-table {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.pricing-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  position: relative;
}

.pricing-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2em;
  color: #333;
}

.pricing-card .price span {
  font-size: 0.5em;
  color: #777;
}

.pricing-card .discount {
  font-size: 0.9em;
  color: #29a329;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .choose-plan {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #5a67d8;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.pricing-card .choose-plan:hover {
  background-color: #4c51bf;
}

.pricing-card.popular {
  border: 2px solid #5a67d8;
}

.pricing-card.popular h3 {
  color: #5a67d8;
}

.pricing-card.popular .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5a67d8;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

.terms {
  display: block;
  margin-top: 20px;
  color: #5a67d8;
  text-decoration: none;
}

.terms:hover {
  text-decoration: underline;
}

/* === Footer === */
#footer {
  background-color: #252525;
  color: #fff;
  padding-top: 40px;
  font-size: 14px;
}

#footer h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-top {
  border-bottom: 1px solid #444;
  padding-bottom: 40px;
}

.footer-links,
.social-icons {
  list-style: none;
  padding: 0;
}

.footer-links li,
.social-icons li {
  margin-bottom: 10px;
}

.footer-links li a,
.social-icons li a {
  color: #bbb;
  text-decoration: none;
}

.footer-links li a:hover,
.social-icons li a:hover {
  color: #fff;
}

.footer-links li {
  color: #bbb;
}

.footer-links li strong {
  color: #fff;
  display: block;
  margin-top: 15px;
}

.social-icons li a i {
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  padding: 20px 0;
  background-color: #1a1a1a;
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* === Títulos y Contenido General === */
.centrado {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

/* === Características Destacadas === */
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background-color: white;
  border: 1px solid #ddd;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature img {
  width: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

/* === Tablas === */
.table-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

thead th {
  background-color: #f8f8f8;
  padding: 15px;
  font-weight: bold;
}

tbody td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;

}


tbody tr:last-child td {
  border-bottom: none;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #0056b3;
}

@media screen and (max-width: 600px) {
  table {
    font-size: 12px;
  }

  button {
    padding: 8px 10px;
  }
}
/* === Tipografía general ssssssssssssssssssss=== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f9fc;
    

}

/* === Campo de búsqueda de dominios === */
#frmDomainHomepage .form-control {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-radius: 30px 0 0 30px;
    height: 50px;
    padding-left: 20px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#frmDomainHomepage .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 162, 199, 0.3);
}

/* === Botones de búsqueda y transferir === */
#frmDomainHomepage .btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 30px 30px 0;
    height: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}
.shortcut-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

.shortcut-icons li {
    text-align: center;
    transition: transform 0.3s ease;
}

.shortcut-icons li:hover {
    transform: translateY(-5px);
}

.shortcut-icons i {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.shortcut-icons p {
    margin: 0;
    font-weight: bold;
}
.plans-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.plan-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-subtitle {
  font-size: 1rem;
  color: #11457e;
  max-width: 800px;
  margin: 0 auto 30px;
  font-weight: 400;
  font-size: 1rem;
    
}
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.section-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #25a2c7;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1e90b3;
}



.planes-cloudarg {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4faff, #e6f0ff); /* degradado azul claro */
  position: relative;
  overflow: hidden;
}






.planes-cloudarg .planes-titulo {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.planes-cloudarg .planes-subtitulo {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.plan-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}
.plan-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.plan-box img {
  height: 140px;
  margin-bottom: 24px;
 width: auto;
  max-width: 100%;
  object-fit: contain; /* Asegura que no se deformen */
}

.plan-box h3 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-box .descripcion {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  min-height: 48px;
}

.plan-box .precio {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.plan-box .precio strong {
  font-size: 1.6rem;
  color: #000;
  display: block;
 font-weight: 700;
}
.boton-hosting {
  font-weight: 700;
}

.plan-box .precio span {
  font-size: 0.85rem;
  color: #888;
}

.btn-empezar {
  background: linear-gradient(135deg, #25a2c7, #198bb2);
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  margin-top: auto;
}

.btn-empezar:hover {
  background: linear-gradient(135deg, #198bb2, #0f6e8f);
}




.precio {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.precio strong {
  font-size: 1.5rem;
  color: #000;
}






.seccion-hosting-home {
  background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 50%, #3b82f6 100%);
  color: black;
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 40px auto;
}

.seccion-hosting-home h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}

.seccion-hosting-home .descripcion {
  font-size: 1rem;
  color: black;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tarjetas-hosting {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.tarjeta {
  background: #ffffff;
  color: #222;
  border-radius: 16px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.tarjeta img {
  height: 70px;
  margin-bottom: 20px;
}

.tarjeta h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.tarjeta p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.tarjeta .precio {
  font-size: 1rem;
  color: #000;
  margin-bottom: 20px;
}

.tarjeta .precio strong {
  font-size: 1.6rem;
  color: #111;
}

.boton-hosting {
  background-color: #004e92;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.boton-hosting:hover {
  background-color: #002f6c;
}
@media (max-width: 480px) {
  .plan-box {
    width: 90%;
    margin: 0 auto;
  }
}








.partners-certificaciones {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.partners-certificaciones h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 10px;
}

.partners-certificaciones p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.grid-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-logos img {
  max-height: 160px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.3s;
}

.grid-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.grid-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 50px 20px;
  background-color: #f9f9f9; /* Fondo suave para contraste */
}

.grid-logos img {
  height: 160px;
  max-width: 240px;
  object-fit: contain;
  filter: none; /* Quitamos el gris si dificulta la lectura */
  transition: transform 0.3s ease;
}

.grid-logos img:hover {
  transform: scale(1.08);
}






.service-section {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.service-section h2 {
    color: #2a2a2a;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}
.service-section p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}
.service-section ul {
    list-style: none;
    padding: 0;
}
.service-section ul li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    color: #555;
    font-size: 15px;
}
.service-section ul li::before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #28a745;
}
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #0056b3;
}
.service-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    margin-top: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}






.cta-button-large {
    font-size: 18px;
    padding: 14px 30px;
}









.footer-poweredby, .poweredby {
    display: none !important;
}

/* HEADER fijo con fondo corporativo (sin blur) */
body #header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background:#fff ;
    color: #fff !important;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15); /* Sombra sutil */
}

/* Asegurar que hijos no sobreescriban el fondo */
#header .container,
#header .top-nav,
#header .navbar,
#header .navbar-default,
#header .navbar-main {
    background: transparent !important;
}

/* Texto y enlaces en blanco sobre el fondo azul */
#header,
#header a,


/* Estado hover/focus legible */
#header a:hover,
#header a:focus {
    opacity: 0.85;
    text-decoration: none;
}

/* Espacio para que el contenido no quede debajo */
body {
    padding-top: 80px; /* ajustá según altura real del header */
}

/* Ajuste del logo (ideal en PNG transparente) */
#header .logo img {
    max-height: 60px;
    height: auto;
    width: auto;
}

/* (Opcional) menú hamburguesa y elementos del nav coherentes */
.navbar.navbar-default.navbar-main {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.navbar-toggle .icon-bar {
    background-color: #fff;
}

