/* Fuente japonesa */
body {
   /* background-image: url("https://ikonos.storeinjapan.com/fondos/Papel oro.jpg");*/
    background-color: #FF8C00 ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.55); /* crema con transparencia */
    backdrop-filter: blur(2px); /* opcional: efecto premium */
    z-index: -1; /* queda detrás del contenido */
}

    


/* HEADER */
.main-header {
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}

.nav-menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: #2e7d32;
}

/* CONTENEDOR PRINCIPAL */
.page-container {
    
    width: 92%;
    max-width: 1200px;
    margin: 40px auto;
}

/* TÍTULO PRINCIPAL */
.main-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
}

.subtitle {
    font-size: 1.1rem;
    margin-top: 8px;
    color: #555;
}

/* CONTENIDO */
.content-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
     background: rgba(255, 140, 0, 0.25); /* crema suave con transparencia */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px); /* efecto premium */

}

.info-section {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 12px;
}

.jp-list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.mt-40 {
    margin-top: 40px;
}

.final-message {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #444;
}

/* IMAGEN LATERAL */
.side-image-box {
    width: 360px;
    max-width: 100%;
    text-align: center;
}

.side-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
.main-footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    background: #2e7d32;
    color: #fff;
}

.contact-links {
    margin-top: 10px;
}

.contact-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.contact-links a:hover {
    text-decoration: underline;
}
/* FORMULARIOS */
.form-container {
    width: 92%;
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

.jp-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.jp-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-main.full {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px;
    background: #2e7d32;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-main.full:hover {
    background: #256628;
}

.form-error {
    background: #ffdddd;
    color: #a30000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.form-link {
    text-align: center;
    margin-top: 15px;
}

.form-link a {
    color: #2e7d32;
    text-decoration: none;
}

.form-link a:hover {
    text-decoration: underline;
}
/* ===== HERO / PORTADA ===== */
/* ===== HERO / PORTADA ===== */
.hero-banner {
    width: 100%;
    text-align: center; /* centra la imagen */
    overflow: hidden;
    margin-top: 40px;
    padding: 0;
   
}

.hero-img {
    width: auto;          /* que NO se estire */
    max-width: 100%;      /* que no se salga del contenedor */
    height: auto;         /* mantiene proporción */
    display: block;
    margin: 0 auto;       /* centrado */
}
.oferta {
    display: flex;
    justify-content: center;
}
 .oferta img {
  max-width: 300px; /* o el tamaño que prefieras */
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-banner {
        max-height: 260px; /* más pequeño en móvil */
    }

    .hero-img {
        object-fit: cover;
    }
}
