
        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: linear-gradient(to right, rgb(0 0 0 / .5), rgb(0 0 0 / .5)),url(Fotos/Screenshot_20260120-114814~2.png);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            background-attachment: fixed; 
        }

       header, footer{
            text-align: center;
            color: antiquewhite;
            padding: 0px;
        }

        .titulo-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.4em; /* espacio entre logo y texto */
        }
        
        .titulo-logo .logo {
            height: 1em;       /* MISMO tamaño que la letra */
            width: auto;
            vertical-align: middle;
        }
    
        nav a {
            display: inline-block;       /*esto es clave para que se agrande la letra al apoyar cursor*/
            margin: 0 10px;
            color:rgba(187, 191, 225, 0.88);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;     
        }
        nav a:hover {
            text-decoration: underline;
            transform: scale(1.2);
        }

        .spacer {
            height: 100vh;
        }

        /* DROPDOWN SERVICIOS */
        .dropdown {
            display: inline-block;
            position: relative;
        }

        .dropdown-btn {
            background: none;
            border: none;
            color: rgba(187, 191, 225, 0.88);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.3s ease;
        }

        .dropdown-btn:hover {
            text-decoration: underline;
            transform: scale(1.2);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 130%;
            left: 0;
            background-color: rgba(0, 0, 0, 0.9);
            border-radius: 6px;
            min-width: 260px;
            padding: 10px 0;
            z-index: 1000;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: antiquewhite;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: rgb(55, 89, 242);
        }

        /* cuando está activo */
        .dropdown.active .dropdown-menu {
            display: block;
        }





        /* BLOQUES */

        .bloque {
            opacity: 0;
            transform: translateX(-300px);
            transition: all 1s ease-out;
        }

        .bloque-box {
            background-color: rgba(0, 0, 0, 0.75);
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            border-radius: 8px; /* opcional */
        }

        .bloque.aparece {
            opacity: 1;
            transform: translateX(0);
            margin-top: 40px;
        }

        section.bloque {
            margin-bottom: 80px;
        }

        .consulta-layout {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        /* Columna izquierda */
        .consulta-texto {
            flex: 1;
            text-align: left;
        }
        .consulta-texto h2,
        .consulta-texto p {
            text-align: left;
        }

        /* Columna derecha */
        .consulta-formulario {
            flex: 1;
        }

        /* Mobile: se apila */
        @media (max-width: 768px) {
            .consulta-layout {
                flex-direction: column;
            }
            .consulta-texto h2,
            .consulta-texto p {
                text-align: center;
            }
        }


        .form-consulta {
            max-width: 600px;
            margin: 40px auto 0;
        }

        .campo-form {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .campo-form label {
            margin-bottom: 6px;
            font-weight: bold;
            color: antiquewhite;
            text-align: left;
        }

        .campo-form input,
        .campo-form textarea {
            padding: 10px;
            border-radius: 4px;
            border: none;
            font-size: 1rem;
            outline: none;
        }

        .campo-form input:focus,
        .campo-form textarea:focus {
            box-shadow: 0 0 0 2px rgba(187, 191, 225, 0.6);
        }

        .btn-enviar {
            background-color: rgb(55, 89, 242);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .btn-enviar:hover {
            transform: scale(1.05);
            background-color: rgb(40, 70, 200);
        }

        /* BLOQUE CONSULTA FULL WIDTH */
        .bloque-consulta .bloque-box {
            max-width: 100%;
            margin: 0;
            border-radius: 0;
        }

        img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block; 
        }

        .header-container {
            background-color: rgba(0, 0, 0, 0.75); /* fondo constante */
            width: 100%;
            position: relative; /* importante */
        } 

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            text-align: center;
        }
    
        

        .wrap-texto {
        color: antiquewhite;
        text-align: center;
        }

   

        h2 {
            color: antiquewhite;
            text-align: center;
        }

        p {
            color: antiquewhite;
            text-align: center;
        }
        .spacer {
            height: 100vh;
        }


        @keyframes aparecer-izquierda {
            from {
                opacity: 0;
                transform: translateX(-200px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

       .texto-scroll {
          animation: aparecer-izquierda linear;
          animation-timeline: view();
          animation-range: entry 0% entry 10%;
        }

        h3 {
        color: antiquewhite;
        text-align: center;
        }

        ul {
        color: antiquewhite;
        text-align: center;
        }

        li {
        color: antiquewhite;
        }

        footer a {
            display: inline-flex;
            text-align: center;
            color: antiquewhite;
            text-decoration: none;
            font-weight: bold;
            align-items: center;
            gap: 10px;
        }
       
        footer a:hover {
            color: rgb(55, 89, 242);
        }

        footer a.mail i {
            color: antiquewhite;
            font-size: 1.1rem;
        }

        footer a.whatsaap i {
            font-size: 1.3rem;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .whatsapp-float:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 10px rgba(0,0,0,0.4);
            cursor: pointer;
        }

        .instagram-header {
            display: inline-block;
            margin-top: 10px;
            font-size: 28px;
            color: white;
            transition: transform 0.3s ease;
        }

        .instagram-header:hover {
            transform: scale(1.2);
            color: #E1306C;
        }

        .instagram-top {
            position: fixed;
            top: 120px;
            right: 20px;
            background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
            color: white;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 26px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .instagram-bottom {
            position: fixed;
            bottom: 100px; /* queda arriba del botón de WhatsApp */
            right: 20px;
            background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
            color: white;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 26px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .instagram-top:hover,
        .instagram-bottom:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 10px rgba(0,0,0,0.4);
        }

        .instagram-header {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 28px;
            color: white;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .instagram-header:hover {
            transform: scale(1.2);
            color: #E1306C;
        }

    

       