@charset "utf-8";
/* === BÁSICOS === */
*{
	padding: 0;
	margin: 0;
}
body{
    font-family: "Roboto", sans-serif;
}
main{
	
}
article{
	
}
aside{
	
}
footer{
	
}
/* === 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;
	font-size: 0.9rem;
	text-decoration: none;
    border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	background: #0E84FE;
}
/* === LOGO TOP === */
.ac-cont-logo-top{
}
.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;
}
/* === 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) { }