/* Importar Poppins y Raleway desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Raleway:wght@400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Tipografía por defecto para texto de contenido */
    color: #181818; /* Color de texto principal */
}

body {
    line-height: 1.6;
    margin: 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%); /* Fondo con gradiente suave */
}

/* Tipografía para títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* Poppins para títulos */
    font-weight: 700; /* Peso más bold para mayor impacto */
}

/* Animaciones de entrada */
.animate-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar (Pantallas grandes) */
.top-bar {
    background: linear-gradient(90deg, #000a34, #247aea); /* Gradiente vibrante */
    padding: 12px;
    text-align: right;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Top Bar Mobile (Dentro del menú en responsive) */
.top-bar-mobile {
    display: none;
    margin-bottom: 20px;
    justify-content: center;
    gap: 12px;
}

.btn {
    background: #ffbd00; /* Color secundario */
    color: #181818;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px; /* Bordes más redondeados */
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: #247aea; /* Color terciario */
    color: white;
    transform: translateY(-2px); /* Elevación en hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #ffbd00; /* Color plano para el botón del formulario */
    color: #181818;
}

.btn-primary:hover {
    background: #247aea;
    color: white;
}

.btn-secondary {
    background: #ffffff;
    color: #000a34;
    border: 2px solid #ffbd00;
}

.btn-secondary:hover {
    background: #ffbd00;
    color: #181818;
    transform: translateY(-2px);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.logo {
    order: 2;
}

.logo img {
    max-width: 220px; /* Logo más grande */
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Efecto de escala en hover */
}

.hamburger {
    order: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #181818;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffffff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffffff;
}

nav {
    display: flex;
    align-items: center;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #181818;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #ffbd00;
    transform: translateY(-2px);
}

/* Image and Link Section (Hero) */
.image-link-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, #000a34 0%, #247aea 100%); /* Gradiente vibrante */
    margin: 0;
    position: relative;
    overflow: hidden;
}

.image-link-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.image-container, .link-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.03);
}

.link-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Section */
.text-section {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    margin: 0;
}

.text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000a34;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #000a34, #247aea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e0e7ff 100%); /* Gradiente claro y alegre */
    margin: 0;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000a34;
    font-family: 'Poppins', sans-serif;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reason-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.reason p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #181818;
}

/* Hosting Plans Section */
.hosting-plans {
    padding: 40px 20px;
    text-align: center;
    background: #ffffff;
    margin: 0;
}

.hosting-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000a34;
    font-family: 'Poppins', sans-serif;
}

.hosting-plans p {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto 30px;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.plan {
    background: #ffffff;
    color: #181818;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan h3 {
    color: #ffbd00;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.plan p {
    font-family: Arial, sans-serif;
}

/* Services Section */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(180deg, #e0e7ff 0%, #f8f9fa 100%);
    margin: 0;
}

.service {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service h3 {
    color: #000a34;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
}

/* Contact Form Section */
.contact-form {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000a34 0%, #247aea 100%);
    margin: 0;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    text-align: left;
    font-weight: bold;
    color: #ffbd00;
    font-family: Arial, sans-serif;
}

.contact-form input, .contact-form textarea, .contact-form select {
    padding: 12px;
    border: none;
    border-radius: 10px;
    width: 100%;
    color: #181818;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.phone-input {
    display: flex;
    gap: 15px;
}

.phone-input select {
    flex: 0 0 120px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: #000121;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffbd00;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffbd00;
    transform: translateX(5px);
}

.footer-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem; /* Tamaño más pequeño para el copyright */
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif; /* Raleway para enlaces del copyright */
    margin: 0 5px;
    transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.footer-link:hover {
    color: #ffbd00;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .top-bar-mobile {
        display: flex;
    }

    header {
        padding: 10px 15px;
    }

    .logo img {
        max-width: 160px;
    }

    .hamburger {
        display: flex;
        order: 1;
    }

    .hamburger span {
        background: red;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #000a34, #247aea);
        padding: 60px 20px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        transition: all 0.3s ease-in-out;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin: 0;
    }

    nav ul li a {
        color: #ffffff;
        font-size: 1.3rem;
    }

    nav ul li a:hover {
        color: #ffbd00;
    }

    .image-link-section {
        flex-direction: column;
        padding: 15px;
    }

    .text-section h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .why-choose-us h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .reason {
        max-width: 300px;
    }

    .hosting-plans h2, .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .services-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-form h3 {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem; /* Tamaño más pequeño en responsive */
    }
}

/**/
.registro-dom{
    background-color: #222222;
    padding: 1rem;
    border-radius: .4rem;
    color: #ffffff;
    border: none;
}
.btn-reg-dom{
    cursor: pointer;
    color: #000000;
    background-color: #ffbd00;
    border: none;
    padding: .2rem .5rem;
    border-radius: .3rem;
    font-size: 1rem;
}
.reg-dom-ok{
    background-color: #ffffff22;
    border: none;
    padding: .3rem .7rem;
    color: #ffbd00;
    border: none;
    border-radius: .5rem;
    font-size: .9rem;
    margin-top: .2rem;
}