/* --- App.vue (global) --- */
:root { 
    box-sizing: border-box; 
}

*, *::before, *::after { 
    box-sizing: border-box; 
}

html, body { height: 100%; }
body { 
    min-height: 100vh;
    background: #dff3fe;  
    margin: 0; 
    font-family: 'Ubuntu', sans-serif; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}

h1 { 
    font-size: 36px; 
    font-weight: 700; 
    line-height: 40px; 
}
h2 { 
    font-size: 32px; 
    font-weight: 500; 
    line-height: 36px; 
}
h3 { 
    font-size: 28px; 
    font-weight: 500; 
    line-height: 32px; 
}
h4 { 
    font-size: 24px; 
    font-weight: 400; 
    line-height: 28px; 
}
h5 { 
    font-size: 20px; 
    font-weight: 400; 
    line-height: 24px; 
}
h6 { 
    font-size: 14px; 
    font-weight: 400; 
    line-height: 18px; 
    margin: 0; 
}
p  { 
    font-size: 16px; 
    font-weight: 400; 
    line-height: 22px; 
}

@media (min-width: 1280px) {
    h1 { 
        font-size: 48px; 
        line-height: 56px; 
    }
    h2 { 
        font-size: 36px; 
        line-height: 44px; 
    }
    h3 { 
        font-size: 33px; 
        line-height: 40px; 
    }
    h4 { 
        font-size: 28px; 
        line-height: 32px; 
    }
    h5 { 
        font-size: 24px; 
        line-height: 28px; 
    }
}


/* --- NAVBAR --- */
.site-nav{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(223,243,254,.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,52,94,.08);
  box-shadow: 0 6px 24px rgba(30,52,94,.08);
}
.site-nav .nav-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: .6rem .25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-nav .brand{
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; color: #1e345e; text-decoration: none;
  border-radius: 12px; padding: .25rem .35rem;
}
.site-nav .brand img{ display:block; width: 28px; height: 28px; }
.site-nav .links{ display:flex; align-items:center; gap: .5rem; flex-wrap: wrap; }

.site-nav a{
  color:#1e345e; text-decoration:none; font-weight:700;
  padding: .55rem .9rem; border-radius: 999px;
  transition: background .2s, color .2s, transform .18s, box-shadow .2s;
}
.site-nav a:hover{
  background:#fff; color:#d35429;
  box-shadow: 0 4px 12px rgba(30,52,94,.12);
  transform: translateY(-1px);
}

/* Botón opcional tipo CTA */
.site-nav a.cta{
  background: linear-gradient(90deg,#d35429 60%,#ea9952 100%);
  color:#fff; box-shadow: 0 2px 8px rgba(211,84,41,.15);
}
.site-nav a.cta:hover{ filter:brightness(.96); color:#fff; }

/* Estado activo accesible: pon aria-current="page" en el enlace de la página actual */
.site-nav a[aria-current="page"], .site-nav a.active{
  background:#fff; color:#d35429;
  box-shadow: inset 0 0 0 2px rgba(211,84,41,.25);
}

/* Responsive */
@media (max-width: 640px){
  .site-nav .nav-inner{ padding: .5rem .25rem; }
  .site-nav .links a{ padding: .5rem .75rem; font-weight:600; }
  .site-nav .brand span{ display:none; } /* solo icono en móvil */
}



/* --- HERO / LANDING HEADER --- */
.hero {
    min-height: 100vh;
    width: 100vw;
    background-image: url('/background-building.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(223, 243, 254, 0.8);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 48px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}
.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 12px rgba(30,52,94,0.12));
}
.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #1e345e;
    line-height: 1.1;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(220,225,235,0.18);
}
.hero-highlight {
    color: #d35429;
    background: linear-gradient(90deg, #d35429 60%, #ea9952 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #1e345e;
    font-weight: 500;
    margin: 0 0 12px 0;
    text-align: justify;
}
.hero-cta-nav {
    margin: 18px 0 0 0;
}
.hero-cta-btn {
    display: inline-block;
    padding: 16px 44px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #d35429 60%, #ea9952 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(211,84,41,0.10);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .18s;
    letter-spacing: 0.5px;
}
.hero-cta-btn:hover {
    background: linear-gradient(90deg, #b93c0a 60%, #ea9952 100%);
    transform: translateY(-2px) scale(1.04);
}
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 32px 0 0 0;
    padding: 0;
    list-style: none;
}
.hero-benefit {
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1.08rem;
    color: #1e345e;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(30,52,94,0.5);
    gap: 8px;
    transition: box-shadow 0.22s cubic-bezier(.4,1.3,.6,1), background 0.22s, transform 0.18s, opacity 0.5s, right 0.5s;
    will-change: transform, box-shadow, background, opacity, right;
    opacity: 0;
    transform: translateX(60px) scale(1);
    animation: hero-benefit-in 0.7s cubic-bezier(.4,1.3,.6,1) forwards;
}
.hero-benefit:nth-child(1) { 
    animation-delay: 0.15s; 
}
.hero-benefit:nth-child(2) { 
    animation-delay: 0.32s; 
}
.hero-benefit:nth-child(3) { 
    animation-delay: 0.49s; 
}

@keyframes hero-benefit-in {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-benefit:hover {
    box-shadow: 0 6px 24px rgba(30,52,94,0.13);
    transform: translateY(-3px) scale(1.05);
}
.hero-benefit .icon {
    font-size: 1.3rem;
    margin-right: 6px;
}

@media (min-width: 700px) {
    .hero-content {
        padding: 64px 48px 48px 48px;
        max-width: 600px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-logo {
        width: 220px;
    }
    .hero-subtitle {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 1100px;
        padding: 80px 0;
    }
    .hero-title {
        font-size: 3.7rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .hero-benefit {
        width: auto;
    }
}


/* Info section */
.info-section { 
     background: linear-gradient(to bottom, #fbeee3  0%, #e0f3fd 100%); 
    padding: 40px 24px; 
    width: 100%; 
    color: #1e345e; 
    position: relative; 
    overflow: hidden; 
}
.info-content {
    width: 90%; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
@media (min-width: 700px) {
    .info-content {
        padding: 64px 48px 48px 48px;
    }
}

@media (min-width: 1200px) {
    .info-content {
        padding: 80px 0;
    }
}
.info-main-row, 
.info-bottom-row { 
    width: 100%;
    display: flex; 
    flex-direction: row; 
    gap: 40px; 
    margin: 20px auto; 
    align-items: stretch; 
}
.info-steps { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
    justify-content: center; 
}
.info-img-col { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.info-bottom-row .info-img-col { 
    order: 1; 
}
.info-bottom-row .explanation { 
    order: 2; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

@media (max-width: 1400px) {
    .info-main-row, 
    .info-bottom-row { 
        flex-direction: column; gap: 24px; 
    }
    .info-bottom-row { 
        flex-direction: column-reverse; 
    }
    .info-img-col { 
        margin-bottom: 16px; 
    }
}

.info-section .info-header, 
.info-section .info-lead, 
.info-section .step, 
.info-section .explanation, 
.info-section .explanation-list, 
.info-section .disclaimer { 
    color: #1e345e; 
}
.info-section .step { 
    background: rgba(255,255,255,.12); 
    color: #1e345e; 
}
.info-section .step-icon { 
    background: #d35429; 
    color: #dff3fe; 
}
.info-section .disclaimer { 
    background: rgba(255,247,242,.18); 
    color: #ffd6c1; 
    border-left: 4px solid #d35429; 
}
.info-header { 
    text-align: center; 
    margin-bottom: 24px; 
}
.highlight { 
    color: #d35429; 
}
.highlight-white { 
    color: #dff3fe; 
}
.highlight-blue { 
    color: #1e345e; 
}
.info-lead { 
    font-size: 1.2rem; 
    color: #d35429; 
    margin-top: 8px; 
    margin-bottom: 0; 
}
.info-steps { 
    display: flex; 
    justify-content: space-between; 
    gap: 18px; 
    margin: 32px 0 24px; 
}
.step { 
    background: #f0f8ff; 
    border-radius: 10px; 
    box-shadow: 0 1px 6px rgba(30,52,94,.07); 
    padding: 18px 16px; 
    flex: 1; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1.1rem; 
    color: #1e345e; 
}
.step-icon { 
    background: #d35429; 
    color: #dff3fe; 
    font-weight: bold; 
    border-radius: 50%; 
    min-width: 30px;
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
}
.info-images { 
    display: flex; 
    justify-content: center; 
    gap: 32px; 
    margin: 32px 0; 
}
.info-img { 
    width: 100%; 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(30,52,94,.10); 
}
.disclaimer { 
    background: #dff3fe; 
    color: #d35429; 
    border-left: 4px solid #d35429; 
    padding: 12px 18px; 
    margin: 18px 0 32px; 
    border-radius: 8px; 
    font-size: 18px; 
}
.explanation-list { 
    margin: 0; 
    padding-left: 20px; 
    font-size: 1.08rem; 
}
.explanation-list li { 
    margin-bottom: 10px; 
}


/* --- Use Cases (Cards) --- */
.usecases-section {
    background: linear-gradient(to bottom, #e0f3fd 0%, #fbeee3 100%);
    padding: 64px 0;
    color: #1e345e;
}
.usecases-section h2 {
    text-align: center;
}
.container {
    width: 90%;
    margin: 0 auto;
}
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 1025px) {
  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.usecase-card {
    background: #fff;
    color: #1e345e;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(30,52,94,0.10), 0 1.5px 8px 0 rgba(211,84,41,0.08);
    padding: 36px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s, border 0.18s;
    border: none;
    min-height: 320px;
}
.usecase-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d35429 60%, #ea9952 100%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.usecase-card:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 12px 36px 0 rgba(30,52,94,0.16), 0 2px 12px 0 rgba(211,84,41,0.13);
    border: 1.5px solid #ea9952;
}
.usecase-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    min-height: 70px;
    color: #d35429;
    z-index: 1;
}
.usecase-card p {
    font-size: 1.08rem;
    color: #1e345e;
    margin: 0 0 18px 0;
    min-height: 60px;
    z-index: 1;
}
.uc-cta {
    display: inline-block;
    margin-top: auto;
    padding: 12px 28px;
    background: linear-gradient(90deg, #d35429 60%, #ea9952 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(211,84,41,0.10);
    transition: background 0.18s, transform 0.16s;
    z-index: 1;
}
@media (max-width: 900px) {
    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .usecase-card {
        min-height: 0;
    }
}


/* --- COMPARATIVA --- */
.compare-section {
    background:  #fbeee3;
    color: #1e345e;
    padding: 64px 0 56px 0;
    position: relative;
    overflow: hidden;
}
.compare-section h2 {
    text-align: center;
    color: #d35429;
}
.compare-table-wrap {
    display: none;
    overflow-x: auto;
    margin: 0 auto 0 auto;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(30,52,94,0.08), 0 1.5px 8px 0 rgba(211,84,41,0.06);
    background: #fff;
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    color: #1e345e;
    font-size: 1.08rem;
    border-radius: 18px;
    overflow: hidden;
}
.compare-table thead th {
    background: linear-gradient(90deg, #d35429 60%, #ea9952 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 18px 14px;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}
.compare-table th:first-child {
    border-radius: 18px 0 0 0;
}
.compare-table th:last-child {
    border-radius: 0 18px 0 0;
}
.compare-table td {
    padding: 18px 14px;
    border-bottom: 1.5px solid #f3e3d1;
    text-align: center;
    background: #fff;
    font-size: 1.08rem;
    font-weight: 500;
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.compare-table td strong {
    color: #d35429;
    font-weight: 700;
}
.compare-table tbody tr:hover td {
    background: #fbeee3;
    transition: background 0.18s;
}
.compare-section .disclaimer {
    background: #dff3fe;
    color: #1e345e;
    border-left: none;
    border-radius: 10px;
    margin: 18px auto 0 auto;
    padding: 14px 18px;
    font-size: 1.08rem;
    box-shadow: 0 1px 8px rgba(30,52,94,0.13);
    text-align: center;
    font-weight: 500;
    border-left: 5px solid #d35429;
}

.compare-cards { 
    display: grid; 
    gap: 14px; 
}

.cc-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,52,94,0.08);
    overflow: hidden;
}
.cc-card-header {
  background: linear-gradient(90deg, #d35429 60%, #ea9952 100%);
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  font-size: 1.02rem;
}
.cc-list { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
}
.cc-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 12px 14px;
  align-items: start;
}
.cc-item:last-child { 
    border-bottom: none; 
}
.cc-label { 
    font-weight: 700; 
    color: #d35429; 
}
.cc-value { 
    color: #1e345e; 
    font-weight: 500; 
}

@media (min-width: 600px) {
    .compare-table-wrap {
        display: block;
    }

    .compare-cards {
        display: none;
    }
}


/* --- METODOLOGÍA --- */
.method-section {
    background: linear-gradient(to bottom, #fbeee3 0%, #dff3fe 100%);
    color: #1e345e;
    padding: 56px 0;
}
.method-container {
    width: 90%;
    margin: 0 auto;
}
.method-title {
    text-align: center;
}
.method-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  margin-bottom: 32px;
}
.method-card {
    position: relative;
    flex: 1 1 220px;
    min-width: 220px;
    background: rgba(255,255,255,0.93);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,52,94,0.08);
    padding: 32px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    border: 1.5px solid #d35429;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s, border 0.18s;
    width: 100%;
}
@media (min-width: 700px) {
    .method-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .method-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.method-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d35429 60%, #ea9952 100%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.method-card:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 12px 36px 0 rgba(30,52,94,0.16), 0 2px 12px 0 rgba(211,84,41,0.13);
    border: 1.5px solid #ea9952;
}
.method-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e345e;
    z-index: 1;
}
.method-card-desc {
    font-size: 1rem;
    color: #1e345e;
    opacity: .85;
    z-index: 1;
}
.method-cta-wrap {
    text-align: center;
}


/* Testimonios */
.testimonials-section { 
    background: #dff3fe; 
    color: #1e345e; 
    padding: 56px 0; 
}
.testimonials-section h2 { 
    text-align: center; 
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
}
@media (min-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card { 
    position: relative;
    padding: 18px; 
    border-radius: 12px; 
    background: #fff; 
    border: 1px solid #d35429; 
    overflow: hidden;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d35429 60%, #ea9952 100%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.testimonial-card blockquote { 
    margin: 0 0 8px; 
    font-style: italic; 
}

/* Footer */
.footer { 
    background: #dff3fe; 
    padding: 24px 0 18px; 
    text-align: center; 
    border-top: 1px solid #d35429; 
}
.footer-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
}
.footer-logo { 
    width: 120px; 
    height: auto; 
    margin-bottom: 6px; 
}
.footer-text { 
    color: #1e345e; 
    font-size: 1rem; 
    opacity: .85; 
}