/* ========================= GENERAL ========================= */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
}

/* ========================= CONTAINERS ========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ========================= HEADER ========================= */
.header {
    width: 100%;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 30px;
}

.nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    color: #4fd6fc;
}

.logo-texto {
    display: flex;
    align-items: center;
    gap: 10px; /* espacio entre logo y texto */
}

.logo-nombre {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: white;
}

/* ========================= HERO / VIDEO DE FONDO ========================= */
/* ========================= HERO / ESPACIO PARA HEADER ========================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px; /* espacio para que el header no lo tape */
}

/* Ajuste en pantallas chicas */
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 60px; /* header algo más alto o para ajustar */
    }
}

/* Video de fondo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Overlay diagonal profesional */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, /* ángulo diagonal */
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.8) 100%
    );
    z-index: -1;
}

/* Contenido dentro del hero */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

/* Textos dentro del hero */
.hero h1,
.hero p {
    text-shadow: 0 0 20px rgba(0,0,0,0.95); /* lectura óptima */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Botón del hero */
.btn-primary {
    padding: 12px 25px;
    background: #4fd6fc;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #27a8cf;
}


/* ========================= BENEFICIOS / VENTA ========================= */
.beneficios {
    padding: 120px 0 60px;
    background: #0c0c0c;
    text-align: center;
}

.beneficios h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #4fd6fc;
    margin-bottom: 10px;
}

.beneficios-sub {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    border-color: #4fd6fc;
}

.beneficio-card h3 {
    color: #4fd6fc;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.beneficio-card p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

.beneficios-cta {
    margin-top: 40px;
}

/* ========================= SERVICIOS ========================= */
.servicios {
    padding: 120px 0 60px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.servicio-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.servicio-card:hover {
    transform: translateY(-5px);
    border-color: #4fd6fc;
}

/* ========================= TESTIMONIOS ========================= */
.testimonios {
    padding: 80px 0;
    text-align: center;
}

.testimonios h2 {
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    color: #4fd6fc;
}

.testimonios p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #ccc;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: #4fd6fc;
}

.testimonio-card p {
    font-style: italic;
    color: #fff;
}

.testimonio-card h4 {
    margin-top: 15px;
    color: #4fd6fc;
    font-weight: 600;
}

.testimonio-card .testimonio-link {
    color: inherit;      /* hereda el color del h4 */
    text-decoration: none; /* quita el subrayado */
    display: inline-block; /* permite que se pueda hacer clic en todo el contenido */
}

.testimonio-card .testimonio-link:hover {
    color: #4fd6fc; /* opcional: cambia color al pasar el mouse */
}


/* ========================= PRECIOS ========================= */
.precios {
    padding: 80px 0;
    background: #0d0d0d;
}

.precios-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.precio-card {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 320px;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.precio-card:hover {
    transform: translateY(-5px);
    border-color: #4fd6fc;
}

.precio {
    font-size: 2rem;
    color: #4fd6fc;
    margin: 20px 0;
}

.btn-sec {
    display: inline-block;
    padding: 12px 20px;
    background: #4fd6fc;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.mantenimiento {
    text-align: center; /* centra el texto */
    margin-top: 20px;   /* opcional, para separar del contenido de arriba */
    font-size: 1rem;    /* opcional, para que quede consistente con tu diseño */
    color: #ccc;        /* opcional, para mantener estilo */
}


/* ========================= CONTACTO ========================= */
.contacto {
    padding: 80px 0;
}

.contacto-form {
    display: grid;
    gap: 15px;
}

.contacto-form input,
.contacto-form textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
}

.contacto-form button {
    cursor: pointer;
}

/* ========================= FOOTER ========================= */
.footer {
    text-align: center;
    padding: 40px;
    background: #000;
    margin-top: 60px;
}

.footer .social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .social-icons a img {
    transition: transform 0.3s ease;
}

.footer .social-icons a:hover img {
    transform: scale(1.1);
}


/* ========================= BOTÓN WHATSAPP ========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
