@charset "utf-8";
/* === BÁSICOS === */
*{
	padding: 0;
	margin: 0;
}
body{
    font-family: "Roboto", sans-serif;
    overflow-x: clip;
}
header{
    position:relative;
    
}
header.header-absolute {
    position: absolute;
    z-index:100;
	width: 100%;
}
nav{
	
}
main{
	
}
article{
	
}
aside{
	
}
footer{
	
}
.head_a{
padding:3px 0;
position: relative;
  z-index: 2;
}
.head_b{
  position: relative;
  z-index: 2;
}
.sub-head-a{
	background-color: ;
	padding: 3px 0;
}
.head_b-color{
 
}
.fijo{
	position:fixed; top:0; z-index: 5000;
	background: rgba(0, 0, 0, 0.9); /* Fondo inicial */
    transition: background 0.5s ease; /* Transición suave para el fondo */
}
/* === ICONOS CONTACTO === */
.ac-contac-list{
 list-style:none;
 display:flex;
 gap:20px;
 padding:0;
 margin:0;
}
.ac-contac-list li {
    display:flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    color:#FFFFFF;
    
}
.ac-contac-list li > div:first-child {
 border-radius:50%;
 width:25px;
 height:25px;
 background:#FFFFFF;
 color:#FFFFFF;
 display:flex;
 flex-wrap: nowrap;
 justify-content: center;
 align-items: center;
 margin-right:7px;
}
.ac-contac-list li span{
 font-size:0.80rem;
 color:#000000;
}
/* === REDES SOCIALES CABECERA === */
.red-soc-top{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
    gap:10px;
}
.red-soc-top li{
	
}
.red-soc-top li a{
	color: #FFFFFF;
	text-decoration: none;
    border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	background: #F15A24;
}
.red-soc-top li a span{
 font-size:1.0rem;   
}
/* === LOGO TOP === */
.ac-cont-logo-top{
    width:200px;
}
.ac-cont-logo-top a{
	/*
    position:absolute;
    display:block;
    max-width: 120px;
    border-radius:50%;
    border:solid 7px #FFF;
    background:#FFFFFF;
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.57);
-webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.57);
-moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.57);
    */
}
/* === BOTONES TOP === */
.ac-btn-top{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content:flex-end;
	align-items: center;
    gap: 5px;
}
.ac-btn-top li{
	background: #DFE8ED;
	border-radius: 4px;
}
.ac-btn-top a{
	text-decoration: none;
	text-align: center;
	padding: 5px 15px;
	display: block;
}
.ac-btn-top .ac-btn-title{
	font-size: 0.85rem;
	color:#000000;
}
.ac-btn-top .ac-btn-desc{
	font-size: 0.8rem;
	color:#C6C3C3;
}
#cont_slider{
}   
#btns-bottom-slider{
position: absolute;
	z-index: 200;
	bottom: 0;
	width: 100%;
}
#btns-bottom-slider ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 20px; /* espacio entre botones */
}
.num-popup_a{
	 border-radius:50%;
	 background:#0D83FD;
	 width:25px;
	 height:25px;
	 color:#ffffff;
	 display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size:0.8rem;
}
.ac-footer-list_a{
 margin:0;
 padding:0;
 list-style:none;
}
.ac-footer-list_a li a{
 display:block;
 text-decoration:none;
 color:#FFFFFF;
 margin-bottom:5px;
}
.ac-footer-list_a li a span{
 margin-right:5px;   
}
/* === buscador de dominios === */
.domain-search-section {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: white;
  border-radius: 20px;
  padding: 60px 20px;
}
/* ============================= */
/* CONTENEDOR DEL BUSCADOR */
/* ============================= */
.domain-box {
  background: #ffffff;
  border-radius: 60px;
  overflow: hidden;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
/* efecto al enfocar */
.domain-box:focus-within {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}
/* ============================= */
/* INPUT */
/* ============================= */
.domain-box input {
  height: 65px;
  font-size: 18px;
  background: #ffffff;
  border: none;
  box-shadow: none;
}
.domain-box input:focus {
  outline: none;
  box-shadow: none;
}
/* placeholder más elegante */
.domain-box input::placeholder {
  color: #aaa;
  transition: 0.3s;
}
.domain-box input:focus::placeholder {
  color: #ccc;
}
/* ============================= */
/* SELECT */
/* ============================= */
.domain-box select {
  height: 65px;
  border: none;
  background: #ffffff;
  border-left: 1px solid #eee;
  cursor: pointer;
}
/* ============================= */
/* BOTÓN */
/* ============================= */
.domain-box button {
  height: 65px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  transition: all 0.3s ease;
}
.domain-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}
/* ============================= */
/* ICONO */
/* ============================= */
.input-group-text {
  border: none;
  background: #ffffff;
  padding-left: 20px;
}
/* ============================= */
/* RESULTADO */
/* ============================= */
#resultadoDominio {
  font-size: 18px;
}
/* ============================= */
/* TARJETAS DE PRECIOS */
/* ============================= */
.tld-card {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tld-card strong {
  display: block;
}
.tld-card span {
  color: #0d6efd;
  font-weight: bold;
}
.tld-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* ============================= */
/* RESULTADO DE DOMINIO */
/* ============================= */
.resultado-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.resultado-info strong {
  font-size: 18px;
  color: #333;
}
.resultado-info span {
  font-size: 14px;
}
/* estados */
.disponible {
  color: #28a745;
  font-weight: bold;
}
.no-disponible {
  color: #dc3545;
  font-weight: bold;
}
/* botón */
.resultado-box button {
  border-radius: 30px;
  font-size: 14px;
  padding: 5px 15px;
}
/* animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------- */
/* === FIN BÁSICOS */
/* Extra pequeño (teléfonos muy pequeños) */
@media (max-width: 360px) { }
/* Teléfonos pequeños */
@media (max-width: 480px) { }
/* Teléfonos "normales" */
@media (max-width: 576px) { }
/* Tablets vertical */
@media (max-width: 768px) { }
/* Tablets horizontal / pantallas medianas */
@media (max-width: 992px) { }
/* Laptops / pantallas grandes */
@media (max-width: 1200px) { }
/* Monitores extra grandes */
@media (max-width: 1400px) { }	
/* =========================================================
   FOOTER
========================================================= */
.ac-footer {
    color: #a7a9af;
}
/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */
.ac-footer-main {
    display: grid;
    grid-template-columns:
        1.35fr
        0.85fr
        1.15fr
        1.05fr
        1.45fr;
    gap: 45px;
    padding: 55px 0 60px;
}
/* =========================================================
   LOGO Y EMPRESA
========================================================= */
.ac-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}
.ac-footer-logo img {
    display: block;
    max-width: 155px;
    height: auto;
}
.ac-footer-description {
    max-width: 220px;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #9b9da3;
}
/* =========================================================
   REDES SOCIALES
========================================================= */
.ac-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.ac-footer-social-link {
    width: 32px;
    height: 32px;
    border: 1px solid #4a4b50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4b6bc;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ac-footer-social-link:hover {
    background: #f05a22;
    border-color: #f05a22;
    color: #ffffff;
    transform: translateY(-2px);
}
/* =========================================================
   COLUMNAS
========================================================= */
.ac-footer-column {
    min-width: 0;
}
.ac-footer-title {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #e3e3e5;
    letter-spacing: 0.5px;
}
.ac-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 2px;
    background: #f05a22;
}
/* =========================================================
   LISTAS
========================================================= */
.ac-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ac-footer-list li {
    margin-bottom: 14px;
}
.ac-footer-list a {
    color: #9b9da3;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.ac-footer-list a:hover {
    color: #f05a22;
}
/* =========================================================
   CONTACTO
========================================================= */
.ac-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ac-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}
.ac-footer-contact-icon {
    width: 16px;
    color: #d87842;
    text-align: center;
    flex-shrink: 0;
}
.ac-footer-contact-item span,
.ac-footer-contact-item a {
    color: #9b9da3;
    text-decoration: none;
    transition: color 0.3s ease;
}
.ac-footer-contact-item a:hover {
    color: #f05a22;
}
/* =========================================================
   FORMULARIO
========================================================= */
.ac-footer-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ac-footer-form-group {
    width: 100%;
}
.ac-footer-input,
.ac-footer-textarea {
    width: 100%;
    border: 1px solid #4a4b50;
    border-radius: 7px;
    background: #38393d;
    color: #ffffff;
    outline: none;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.ac-footer-input {
    height: 44px;
    padding: 0 14px;
}
.ac-footer-textarea {
    min-height: 60px;
    padding: 13px 14px;
    resize: vertical;
}
.ac-footer-input::placeholder,
.ac-footer-textarea::placeholder {
    color: #888a91;
}
.ac-footer-input:focus,
.ac-footer-textarea:focus {
    border-color: #f05a22;
    box-shadow: 0 0 0 3px rgba(240, 90, 34, 0.08);
}
/* =========================================================
   BOTÓN
========================================================= */
.ac-footer-button {
    width: 100%;
    height: 41px;
    border: none;
    border-radius: 7px;
    background: #f05a22;
    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(240, 90, 34, 0.18);
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.ac-footer-button:hover {
    background: #d94d1c;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(240, 90, 34, 0.28);
}
/* =========================================================
   FOOTER INFERIOR
========================================================= */
.ac-footer-bottom {
    border-top: 1px solid #3c3d42;
}
.ac-footer-bottom-content {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.ac-footer-copyright {
    font-size: 11px;
    color: #85878e;
}
.ac-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}
.ac-footer-legal a {
    font-size: 11px;
    color: #8f9198;
    text-decoration: none;
    transition: color 0.3s ease;
}
.ac-footer-legal a:hover {
    color: #f05a22;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1199px) {
    .ac-footer-main {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 45px 35px;
    }
    .ac-footer-brand {
        grid-column: span 1;
    }
    .ac-footer-form-container {
        grid-column: span 2;
    }
}
/* =========================================================
   TABLET PEQUEÑA
========================================================= */
@media (max-width: 991px) {
    .ac-footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .ac-footer-form-container {
        grid-column: span 1;
    }
    .ac-footer-description {
        max-width: 100%;
    }
    .ac-footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
        gap: 12px;
    }
}
/* =========================================================
   MÓVIL
========================================================= */
@media (max-width: 767px) {
    .ac-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }
    .ac-footer-brand {
        text-align: center;
    }
    .ac-footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .ac-footer-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
    }
    .ac-footer-social {
        justify-content: center;
    }
    .ac-footer-column,
    .ac-footer-form-container {
        text-align: center;
    }
    .ac-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .ac-footer-contact-item {
        justify-content: center;
    }
    .ac-footer-legal {
        justify-content: center;
        gap: 15px 20px;
    }
}
/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */
@media (max-width: 480px) {
    .ac-footer-main {
        padding: 40px 0;
    }
    .ac-footer-title {
        font-size: 11px;
    }
    .ac-footer-list a,
    .ac-footer-contact-item,
    .ac-footer-description {
        font-size: 12px;
    }
    .ac-footer-bottom-content {
        min-height: auto;
    }
    .ac-footer-copyright,
    .ac-footer-legal a {
        font-size: 10px;
    }
}