/* ======================================
   RESET BÁSICO
   ====================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* ======================================
   ESTILOS GENERALES
   ====================================== */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #cbccd1;
    color: #333;
    line-height: 1.5;
}

/* ======================================
   HEADER PRINCIPAL – VULCANO GESTIÓN
   ====================================== */

.site-header {
    background: linear-gradient(135deg, #1e90ff, #2563eb);
    padding: 15px 20px;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contenedor título + menú */
.header-top {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contenedor del logo */
.logo-container {
    background-color: #00000000;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

/* Imagen del logo */
.site-logo {
    height: 80px;        /* ajustable */
    width: auto;
    display: block;
}


/* ======================================
   MENÚ DE NAVEGACIÓN
   ====================================== */

.nav-list {
    list-style: none;
    display: flex;
    gap: 15px;
}

.side-link {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover general */
.side-link:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}
/* Botón destacado para REGISTRARME */
#registrarme {
    background-color: #ff6600; /* naranja llamativo */
    color: #fff !important;    /* texto blanco */
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

#registrarme:hover {
    background-color: #e55b00; /* naranja más oscuro al pasar el mouse */
    text-decoration: none;
    color: #fff;
}

/* Botón destacado: Ingreso técnico */
.nav-list li:first-child .side-link {
    background-color: #22c55e;
    font-weight: 600;
}

.nav-list li:first-child .side-link:hover {
    background-color: #16a34a;
}

/* ======================================
   antes BOTÓN HAMBugesa
   ====================================== */
   /* ===============================
   DESKTOP (1000px para arriba)
   =============================== */
   
@media (min-width: 1000px) {

    /* Quitar subrayado a TODOS los links del menú */
.nav-list a {
    text-decoration: none;
    font-size: 1.20rem; /* un poco más grande */
}

    /* Fondo del contenedor del menú */
    .nav-list {
        background: #97c6f5; /* azul gris oscuro elegante */
        padding: 12px 18px;
        border-radius: 14px;
        align-items: center;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        padding: 10px 16px;
        border-radius: 10px;
        color: #ffffff;
        font-weight: 500;
        transition: all .25s ease;
    }

    /* INGRESO TÉCNICO */
    .nav-list li:nth-child(2) a {
        background: #2563eb; /* azul fuerte */
    }

    .nav-list li:nth-child(2) a:hover {
        background: #1d4ed8;
    }

    /* REGISTRARME */
    .nav-list li:nth-child(3) a {
        background: #16a34a; /* verde */
    }

    .nav-list li:nth-child(3) a:hover {
        background: #15803d;
    }

    /* AYUDA (más tranqui) */
    .nav-list li:nth-child(4) a {
        background: #6b7280; /* gris suave */
    }

    .nav-list li:nth-child(4) a:hover {
        background: #4b5563;
    }
}

/* ===============================
   BOTÓN HAMBURGUESA
   =============================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* ===============================
   MENÚ NORMAL (DESKTOP)
   =============================== */
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 999px) {

    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 50px;
        right: 0;
        background: #f8f9fa;
        width: 220px;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,.15);
        border-radius: 10px;
        z-index: 1000;
    }

    .nav-list.activo {
        display: flex;
    }

    .nav-list li {
        margin-bottom: 12px;
    }

    .nav-list a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

    /* BOTÓN CERRAR */
    .nav-list .cerrar {
        text-align: right;
    }

    .nav-list .cerrar button {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #333;
    }
}

/* ===============================
   OCULTAR BOTONES EN DESKTOP
   =============================== */
@media (min-width: 1000px) {
    .menu-toggle,
    .nav-list .cerrar {
        display: none;
    }
}
/* ======================================
   HERO / IMAGEN PRINCIPAL
   ====================================== */

/* ======================================
   HERO / IMAGEN PRINCIPAL
   ====================================== */

.hero-section {
    width: 100%;
    height: 400px;              /* Alto base */
    overflow: hidden;
    position: relative;
}

/* Imagen */
.hero-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Mantiene proporción, recorta si es necesario */
    object-position: center;    /* Siempre centrada */
    display: block;
}

/* ======================================
   HERO RESPONSIVE
   ====================================== */

@media (max-width: 999px) {
    .hero-section {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 130px;
    }
}




.comunicacion-titulo {
    text-align: center;
    background-color: #ff6600; /* mismo naranja llamativo */
    color: #fff;               /* texto blanco */
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 22px;
    margin: 25px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;
}




/* ===============================
   SECCIÓN SERVICIOS
   =============================== */
.web-baratas-link {
    text-decoration: none;
    display: block;
}

.web-baratas-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #ff3c00, #ff8c00);
    color: #fff;
    transition: 0.4s ease;
    cursor: pointer;
}

.web-baratas-section:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.web-baratas-contenedor {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.web-baratas-texto {
    flex: 1;
}

.web-baratas-texto h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.web-baratas-sub {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.web-baratas-beneficios {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.web-baratas-beneficios li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.web-baratas-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-web-principal {
    background: #111;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.precio-desde {
    font-size: 0.95rem;
    opacity: 0.9;
    background: #111;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.web-baratas-preview {
    flex: 1;
    text-align: center;
}

.web-baratas-preview img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ===============================
   SECCIÓN SERVICIOS
   =============================== */

.servicios-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.servicios-titulo {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Grid flexible */
.servicios-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

/* Card clickeable */
.servicio-card {
    text-decoration: none;
    color: inherit;

    background-color: #f9fafb;
    border-radius: 10px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Imagen */
.servicio-imagen {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-imagen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Nombre */
.servicio-nombre {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}






/* ======================================
   SECCIÓN INSTITUCIONAL
   ====================================== */

.institucional-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.institucional-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    gap: 30px;
}

/* Bloques */
.institucional-item {
    flex: 1;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.institucional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Títulos institucionales */
.institucional-title {
    font-size: 1.4rem;
    color: #1e90ff;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Texto institucional */
.institucional-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* ======================================
   CONTENIDO PRINCIPAL
   ====================================== */

.site-main {
    padding: 20px;
}
/* ======================================
   CONTENEDOR FORMULARIO
   ====================================== */

.form-wrapper {
    max-width: 520px;
    margin: 60px auto;
    padding: 30px;

    background-color: #ffffff;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ======================================
   SECCIÓN CLIENTE
   ====================================== */

.cliente-section {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
}

/* Títulos */
.section-title {
    font-size: 1.4rem;
    color: #1e90ff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ======================================
   CAMPOS DE FORMULARIO
   ====================================== */

.select-reparacion,
.textarea-descripcion,
.input-nombre,
.input-apellido,
.input-telefono,
.input-email {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 1rem;

    border: 1px solid #ccc;
    border-radius: 6px;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select-reparacion:focus,
.textarea-descripcion:focus,
.input-nombre:focus,
.input-apellido:focus,
.input-telefono:focus,
.input-email:focus {
    outline: none;
    border-color: #4bff1e;
    box-shadow: 0 0 0 2px rgba(30,144,255,0.15);
}

.textarea-descripcion {
    min-height: 140px;
    resize: vertical;
}

/* ======================================
   BOTÓN PRINCIPAL
   ====================================== */

.btn-enviar {
    width: 100%;
    padding: 14px;
    background-color: #1e90ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;

    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enviar:hover {
    background-color: #187bcd;
    transform: translateY(-1px);
}

.btn-enviar:active {
    transform: translateY(0);
}

/* ======================================
   FOOTER
   ====================================== */

.site-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* ======================================
   RESPONSIVE – MOBILE
   ====================================== */

@media (max-width: 999px) {

    /* Menú */
    .menu-toggle {
        display: flex;
    }

    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2563eb;
        box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    }

    .nav-container.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 12px;
    }

    /* Hero */
    .hero-image {
        height: 260px;
    }

    /* Institucional */
    .institucional-container {
        flex-direction: column;
    }

    .institucional-title,
    .institucional-text {
        text-align: center;
    }
}

/* ======================================
   RESPONSIVE – EXTRA CHICO
   ====================================== */

@media (max-width: 768px) {
    .cliente-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.25rem;
    }
}


/* =========================================
   BLOQUE PARA TÉCNICOS (DIFERENCIADO)
========================================= */

.tecnico-intro {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.tecnico-contenedor {
    max-width: 1000px;
    margin: auto;
}

.tecnico-intro h2 {
    font-size: 2.5rem;
    color: #22c55e; /* verde técnico */
    margin-bottom: 20px;
}

.tecnico-texto {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}





/* =====================================
   BLOQUE SEO INFORMATIVO
===================================== */

.seo-info-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.seo-info-contenedor {
    max-width: 1000px;
    margin: auto;
}

.seo-titulo {
    font-size: 2.5rem;
    color: #f97316; /* naranja SEO */
    margin-bottom: 50px;
}

/* Bloques individuales */
.seo-bloque {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    transition: 0.4s ease;
}

.seo-bloque p {
    font-size: 1.15rem;
    color: #d1d5db;
    line-height: 1.8;
    margin: 0;
}

/* Hover sutil */
.seo-bloque:hover {
    transform: translateY(-5px);
    background: rgba(249, 115, 22, 0.08);
}

/* Responsive */
@media (max-width: 768px) {

    .seo-titulo {
        font-size: 2rem;
    }

    .seo-bloque p {
        font-size: 1rem;
    }
}






/* =====================================
   BLOQUE MARKETING DIGITAL
===================================== */

.marketing-section {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.marketing-contenedor {
    max-width: 1100px;
    margin: auto;
}

.marketing-titulo {
    font-size: 2.5rem;
    color: #22c55e; /* verde técnico */
    margin-bottom: 20px;
}

.marketing-intro {
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
    color: #d1d5db;
    font-size: 1.2rem;
    line-height: 1.7;
}

.marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.marketing-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 14px;
    transition: 0.4s ease;
}

.marketing-card h3 {
    color: #22c55e;
    margin-bottom: 10px;
}

.marketing-card p {
    color: #d1d5db;
    line-height: 1.6;
}

.marketing-card:hover {
    transform: translateY(-6px);
    background: rgba(34,197,94,0.1);
}

.btn-marketing {
    display: inline-block;
    padding: 14px 30px;
    background: #22c55e;
    color: #fff;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-marketing:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

    .marketing-grid {
        grid-template-columns: 1fr;
    }

    .marketing-titulo {
        font-size: 2rem;
    }
}
































/* =========================================
   SECCIÓN WEB BARATAS (ESTILO PREMIUM)
========================================= 

.web-baratas-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.web-baratas-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff3c00, #ff8c00);
    color: #fff;
    transition: all .4s ease;
}

.web-baratas-section:hover {
    transform: scale(1.015);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.web-baratas-contenedor {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.web-baratas-texto {
    flex: 1;
}

.web-baratas-texto h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.web-baratas-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.web-baratas-beneficios {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.web-baratas-beneficios li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.web-baratas-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-web-principal {
    background: #111;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-web-principal:hover {
    background: #000;
    transform: translateY(-3px);
}

.precio-desde {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.web-baratas-preview {
    flex: 1;
    text-align: center;
}

.web-baratas-preview img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}*/


/* =========================================
   RESPONSIVE SOLO PARA ESTA SECCIÓN
========================================= */

@media (max-width: 768px) {

    .tecnico-intro {
        padding: 70px 20px;
    }

    .tecnico-intro h2 {
        font-size: 2rem;
    }

    .web-baratas-section {
        padding: 70px 20px;
    }

    .web-baratas-texto h2 {
        font-size: 1.9rem;
    }

    .web-baratas-contenedor {
        flex-direction: column;
        text-align: center;
    }

    .web-baratas-cta {
        justify-content: center;
    }
}



/* =========================================
   CARRUSEL WEB
========================================= */

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.85);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}





















/*===========================================
 FOOTER
 =========================================*/
.footer-container {
    background-color: #1f2933; /* distinto al nav */
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.footer-nav {
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}
@media (max-width: 999px) {
    .footer-nav {
        display: none;
    }
}



