/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

.reseller-highlights {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.reseller-highlights h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 280px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #007bff;
}

.faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
  /*text-align: center;*/
}

.faq-section .container{
    background-color: #f8f8f8;
    padding-bottom: 50px;
    padding-top: 30px;
    border-radius: 10px;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq-accordion {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  background-color: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  background: #fff;
  color: #333;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 30px;
  max-height: 200px; /* suficiente para una respuesta común */
}



.hero-section {
  background-size: cover;
  background-position: center;
    margin-top: -20px;
  position: relative;
  color: #fff;
  
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.25); /* oscurece imagen */
  padding: 100px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}


.domain-search-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.domain-search-form .form-label {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.domain-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.domain-input {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  padding: 10px 16px;
  font-size: 1.2rem;
}

.domain-button {
  border-radius: 0 5px 5px 0;
  padding: 7px 16px;
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
}


.plans-section {
  padding: 60px 20px;
}

.plans-section h2{
    font-weight: bold;
    margin-bottom: 25px;
}

.plan-card {
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.plan-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.plan-subtitle {
  font-size: 1.2rem;
  color: #555;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-price span {
  font-size: 1rem;
  color: #666;
}

.plan-card p {
  margin: 5px 0;
  font-size: 0.9em;
}

.plan-card .btn-primary{
    font-weight: bold;
}

/* Colores pastel personalizados */
.plan-bg-1 {
  background-color: #e6f7ff; /* celeste claro */
}

.plan-bg-2 {
  background-color: #f0f7ff; /* azul muy claro */
}

.plan-bg-3 {
  background-color: #f9f9ff; /* casi blanco con tinte lila */
}

.plan-bg-4 {
  background-color: #fdf4f8; /* rosa pastel */
}

.migration-section {
  padding: 40px 20px;
  background: #fff;
}

.migration-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.migration-left {
  flex: 1 1 40%;
  background-color: #eaf2ff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.migration-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.migration-left p {
  font-size: 15px;
  color: #444;
  margin: 4px 0;
}

.migration-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #286090;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.migration-button:hover{
    text-decoration: none;
    color: white;
}

.migration-right {
  flex: 1 1 55%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1 1 48%;
  background-color: #f7faff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.feature-box img {
  height: 60px;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

.container{
    max-width: 100%;
}

.migration-container h2, .migration-container h3{
    font-weight: bold;
}

.benefits-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.benefit-item {
  flex: 1 1 22%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

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

.benefit-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px auto;
  background-color: #d0f5e5; /* color pastel verde claro */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}

.benefit-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.4;
}

.icon img{
    width: 70%;
}

.instant-email-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 20px;
}

.instant-email-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.instant-email-image {
  flex: 1 1 30%;
  text-align: center;
}

.instant-email-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.instant-email-text {
  flex: 1 1 55%;
}

.instant-email-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 15px;
}

.instant-email-text p {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

.instant-email-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #286090;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.instant-email-button:hover {
  text-decoration: none;
  color: white;
}

div[menuitemname="Categories"]{
    display: none;
}

#footer{
background-color: #0e5077 !important;
}

#footer h5{
    color: #eaf2ff;
    font-weight: bold;
}

#footer a{
    color: white;
}

.topbar {
  background-color:#39afa7;
  font-size: 0.9rem;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left a {
  margin-right: 15px;
  display: inline-block;
}

.topbar-left img {
  width: 18px;
  height: 18px;
}

.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar-right span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2em;
  color: white;
}

.topbar-right a {
  color: white;
  text-decoration: none;
}

.domain-checker-container{
    background: -webkit-linear-gradient(top, #0e5077, #97b5d2) !important;
    background: linear-gradient(to bottom, #0e5077, #97b5d2) !important;
}

.domain-promo-box{
    display: none;
}

