#inicio::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero_publica_tu_publica.jpg") !important;  /* TU IMAGEN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;  
      animation: kenburns 18s ease-in-out infinite alternate;

}

.hero-content h1 {

    margin-top: -200px !important;
}



.btn-central-flotante {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff; /* Verde VANNO */
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9999;

    /* ANIMACIÓN SUAVE PARA LLAMAR ATENCIÓN */
    animation: pulseGlow 2.2s infinite ease-in-out;
}

/* EFECTO PULSE ELEGANTE (no exagerado) */
@keyframes pulseGlow {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateX(-50%) scale(1.06);
        box-shadow: 0 8px 35px rgba(16,192,97,0.45);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
}

/* HOVER */
.btn-central-flotante:hover {
    transform: translateX(-50%) scale(1.12);
}



.texto-premium {
    padding: 80px 20px;
    background: #f5f3ee; /* tono claro elegante */
    display: flex;
    justify-content: center;
}

.texto-premium-inner {
    max-width: 720px;
    text-align: left;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.tp-title {
    font-size: 34px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2d2b1a;
    margin-bottom: 8px;
}

.tp-subtitle {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.tp-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

.tp-highlight {
    font-weight: 600;
    color: #111;
}




.vanno-incluye {
    padding: 80px 40px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.vanno-incluye-content {
    max-width: 1100px;
}

.vanno-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.vanno-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
}

.vanno-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.vanno-grid ul {
    list-style: none;
    padding: 0;
}

.vanno-grid li {
    font-size: 16px;
    margin-bottom: 18px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vanno-grid li::before {
    content: "✔";
    color: #10c061;
    font-weight: bold;
}

.vanno-note {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}









.rentabilidad-section {
    padding: 90px 20px;
    background: #fafafa;
    display: flex;
    justify-content: center;
}

.rentabilidad-container {
    max-width: 820px;
    width: 100%;
    text-align: center;
}

.rent-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.rent-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.rent-form {
    width: 100%;
}

.rent-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.rent-group {
    flex: 1;
    text-align: left;
}

.rent-label {
    display: block;
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
}

.rent-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
    transition: .2s;
}

.rent-input:focus {
    border-color: #10c061;
    box-shadow: 0 0 4px rgba(16, 192, 97, .3);
}

.rent-check {
    margin: 18px 0;
    text-align: left;
    font-size: 14px;
}

.rent-button {
    background: #10c061;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
}

.rent-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16,192,97,0.25);
}




.beneficios-vanno {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.beneficios-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.beneficios-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.benef-card {
    background: #fafafa;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: all .25s ease;
    border: 1px solid #eee;
}

.benef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.benef-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benef-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.benef-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}



.vanno-docs {
    padding: 100px 30px;
    background: #ffffff;
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
}

.docs-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.docs-header p {
    font-size: 17px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.docs-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 16px;
    line-height: 1.6;
    background: #f7f7f7;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
}

.doc-number {
    font-size: 30px;
    font-weight: 700;
    color: #0d6efd; /* azul elegante VANNO */
    min-width: 30px;
}

.docs-col-alt .doc-number {
    color: #111; /* contraste entre columnas */
}

.docs-note {
    margin-top: 50px;
    background: #111;
    color: white;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 14px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}



.btn-publicar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.btn-publicar {
    background: #111;               /* Negro elegante */
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: .25s ease;
    display: inline-block;
}

.btn-publicar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.26);
    background: #000;
}

