*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Arial', sans-serif;
}

body{
    background:#ffffff;
    color: #1a365d;
}


/* Configuración del Logo SVG */
.logo-svg {
    height: 55px; /* Controla el tamaño del logo desde aquí */
    width: auto;
    transition: transform 0.3s ease;
}

/* Efecto Pro: El logo se mueve sutilmente al pasar el ratón */
.logo-box:hover .logo-svg {
    transform: scale(1.05);
}

.logo-box img{
    left: 50%;
}

/* El resto del CSS se mantiene igual para la estructura */
.main-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.brand-text h1 {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a365d;
    margin: 0;
    line-height: 1;
}

.brand-text p {
    font-size: 0.7rem;
    color: #718096;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    margin-left: 25px;
    font-size: 0.95rem;
}

.btn-contacto {
    background-color: #1a365d;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-contacto:hover{
    background: #143b91;
    transform: translatey(-2px);
}

/* BOTÓN */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: pop 0.3s ease;
}

@keyframes pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.wa-icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
}

/* NOTIFICACIÓN */
.notif {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background: red;
  color: white;
  font-size: 11px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* CHAT BOX (INTERCOM STYLE) */
.chat-box {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 340px;
  height: 420px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* HEADER */
.chat-header {
  background: #25D366;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header small {
  display: block;
  font-size: 11px;
  opacity: 0.9;
}

.chat-header span{
    cursor: pointer;
}

/* BODY */
.chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

/* MENSAJE */
.msg {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  width: fit-content;
}

/* INPUT */
.chat-input {
  display: flex;
  border-top: 1px solid #eee;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

.chat-input button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;

  background: #25D366;
  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 17px;
  cursor: pointer;

  padding: 0;
  margin: 0 6px;
}



.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    color: #000000;
  }

  nav {
    display: none;
    flex-direction: column; /* 🔥 CLAVE → vertical */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
}
.footer{
    text-align: center;
    padding: 20px;
}

.hero{
     width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fc;
    overflow-x: hidden;
}

.hero-text{
    width: 50%;
    margin: 5%;
}

.hero-text h1{
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #0d1b3d;
    margin-bottom: 20px;
}
.hero-text p{
    font-size: 18px;
    color: #656565;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 35px;
}

/* BOTÓN */
.hero-text .btn{
    display: inline-block;
    background: #0d2b6b;
    color: white;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-text .btn:hover{
    background: #143b91;
    transform: translatey(-2px);
}

.hero-image{
    width: 70%;
    display: flex;
    justify-content: center;
}

.hero-image img{
    width: 100%;
    max-width: 650px;
    object-fit: contain;
}
.br{
    display: none;
}

.hero-responsive{
    display: none;
}

@media (max-width: 992px){
    .hero{
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-text,
    .hero-image{
        width: 100%;
    }

    .hero-text{
        margin: 5%;
    }

    .hero-text h1{
        font-size: 48px;
    }

    .hero-text p{
        margin: 0 auto 30px;
    }

    .hero-image{
        margin-top: 40px;
    }
}



/* SERVICES */
.services{
    margin: 0px;
    padding: 100px 8%;
    background: #f8f9fc;
}

/* CONTENEDOR */
.services-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card{
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card img{
    width: 300px;
    margin-bottom: 20px;
}

.service-card h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d1b3d;
}

.service-card p{
    color: #666;
    line-height: 1.6;
}

.service-btn{
    display: inline-block;
    background: #0d2b6b;
    color: white;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.service-btn:hover{
    background: #143b91;
    transform: translatey(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px){

    .services-container{
        grid-template-columns: 1fr;
    }

}

.contacto{
    background: white;
    text-align:center;
    padding:70px 20px;
}

.contacto h2{
    margin-bottom:20px;
    font-size:35px;
}

.contacto p{
    display: inline;
    margin:10px 0;
    color:#555;
}

/* REQUEST SECTION */
.request-section{
    padding: 100px 8%;
    background: #ffffff;
}

.request-container{
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.request-text h2{
    font-size: 52px;
    color: #0d1b3d;
    margin-bottom: 20px;
}

.request-text p{
    color: #666;
    line-height: 1.7;
    font-size: 18px;
}

/* FORM */
.request-form{
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.input-group{
    margin-bottom: 20px;
}

.request-form input,
.request-form select,
.request-form textarea{
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus{
    border-color: #0d2b6b;
}

/* BOTÓN */
.request-btn{
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 40px;
    background: #0d2b6b;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.request-btn:hover{
    background: #163d91;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .request-container{
        grid-template-columns: 1fr;
    }

    .request-text{
        text-align: center;
    }

    .request-text h2{
        font-size: 40px;
    }

}

/* AUTH */
.auth-section{
    width: 100%;
    min-height: 100vh;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 8%;
}

.auth-container{
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT */
.auth-left{
    background: #0d2b6b;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-left h2{
    font-size: 52px;
    margin-bottom: 20px;
}

.auth-left p{
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.auth-left img{
    width: 100%;
    max-width: 350px;
}

/* RIGHT */
.auth-right{
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
}

/* FORM */
.auth-form h3{
    font-size: 32px;
    margin-bottom: 25px;
    color: #0d1b3d;
}

.auth-form {
    width: 100%;
}

.input-group{
    width: 100%;
    margin-bottom: 20px;
}

.auth-form input{
    width: 100%;
    padding: 17px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.auth-form input:focus{
    border-color: #0d2b6b;
}

/* BUTTON */
.auth-btn{
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 40px;
    background: #0d2b6b;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover{
    background: #163d91;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .auth-container{
        grid-template-columns: 1fr;
    }

    .auth-left{
        text-align: center;
        align-items: center;
    }

    .auth-left h2{
        font-size: 40px;
    }

    .auth-right{
        padding: 40px;
    }

}


/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio{

    padding:120px 8%;

    background:#0b0b0c;

    overflow:hidden;

    position:relative;
}

/* HEADER */

.portfolio-header{

    text-align:center;

    margin-bottom:70px;
}

.portfolio-header span{

    color:#d4af37;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}

.portfolio-header h2{

    font-size:56px;

    margin:20px 0;

    color:white;
}

.portfolio-header p{

    max-width:750px;

    margin:auto;

    color:#a1a1aa;

    line-height:1.8;

    font-size:17px;
}

/* =========================
   BUTTONS
========================= */

.portfolio-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:55px;
}

.portfolio-buttons button{

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#18191c;

    color:#d4af37;

    font-size:24px;

    cursor:pointer;

    transition:0.4s ease;

    border:
    1px solid rgba(255,255,255,0.05);
}

.portfolio-buttons button:hover{

    transform:
    translateY(-4px);

    background:#d4af37;

    color:#0b0b0c;

    box-shadow:
    0 15px 30px rgba(212,175,55,0.2);
}

/* =========================
   SLIDER
========================= */

.portfolio-slider{

    display:flex;

    gap:35px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    scroll-snap-type:x mandatory;

    padding-bottom:20px;
}

.portfolio-slider::-webkit-scrollbar{

    display:none;
}

/* =========================
   CARD
========================= */

.portfolio-card{

    min-width:420px;

    background:#151618;

    border-radius:32px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,0.05);

    transition:0.5s ease;

    scroll-snap-align:center;

    position:relative;
}

.portfolio-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}

/* =========================
   MOCKUP
========================= */

.ui-mockup{

    height:320px;

    padding:28px;

    background:
    linear-gradient(
    135deg,
    #101113,
    #1b1c20
    );

    position:relative;

    overflow:hidden;
}

/* GLOW */

.ui-mockup::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:
    rgba(212,175,55,0.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(50px);
}

/* TOP BAR */

.mockup-top{

    width:100%;

    height:75px;

    border-radius:18px;

    background:
    linear-gradient(
    90deg,
    #d4af37,
    #8b6b16
    );

    margin-bottom:22px;
}

/* BIG CARD */

.mockup-card{

    width:100%;

    height:120px;

    border-radius:20px;

    background:#232428;

    margin-bottom:18px;

    position:relative;

    overflow:hidden;
}

/* SHINE EFFECT */

.mockup-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:100%;

    background:
    rgba(255,255,255,0.06);

    transform:skewX(-20deg);

    left:-120px;

    animation:
    shine 4s linear infinite;
}

/* SMALL */

.small{

    height:55px;
}

/* =========================
   CONTENT
========================= */

.collection-content{

    padding:35px;
}

.collection-content span{

    color:#d4af37;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;
}

.collection-content h3{

    font-size:32px;

    margin:18px 0;

    color:white;
}

.collection-content p{

    color:#a1a1aa;

    line-height:1.8;

    margin-bottom:32px;
}

/* BUTTON */

.collection-content a{

    display:inline-block;

    padding:16px 34px;

    background:#d4af37;

    color:#0b0b0c;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.4s ease;
}

.collection-content a:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 35px rgba(212,175,55,0.25);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes shine{

    0%{

        left:-120px;
    }

    100%{

        left:120%;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .portfolio{

        padding:100px 5%;
    }

    .portfolio-header h2{

        font-size:40px;
    }

    .portfolio-card{

        min-width:320px;
    }

    .collection-content h3{

        font-size:26px;
    }
}