body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FEEBE7;
}
.titulo {
    font-size: 40px;
    text-align: center;
    color: #c0392b;
    letter-spacing: 2px;
    margin: 20px 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FCC6BB;
    padding: 15px 80px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    color: white;
    font-size: 30px;
    font-weight: bold;
}
.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.menu li {
    margin-left: 20px;
}
.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    background-color: #FAA18F;
    padding: 15px;
    border-radius: 15px;
}
.menu a:hover {
    color: #00ffcc;
    transform: translateY(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.inicio_sesion {
    background-color: #e05c45 ;
    font-weight: bold;
}

/* ── Contenido Hero ── */
.Contenido_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 80px;
    background: linear-gradient(135deg, #FCC6BB, #FEEBE7);
}
.texto1 {
    max-width: 700px;
    background-color: white;
    border-left: 6px solid #FAA18F;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 6px 20px rgba(250, 161, 143, 0.3);
}
.texto1 p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ── Características ── */
.caracteristicas {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 80px;
    flex-wrap: wrap;
}
.card {
    background-color: white;
    border-radius: 16px;
    padding: 35px 30px;
    width: 220px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(250, 161, 143, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(250, 161, 143, 0.45);
}
.card-icono {
    font-size: 42px;
    margin-bottom: 15px;
}
.card h3 {
    color: #c0392b;
    margin: 0 0 10px;
    font-size: 18px;
}
.card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* ── Galería ── */
.galeria {
    padding: 50px 80px;
    background-color: #fff5f3;
}
.subtitulo {
    text-align: center;
    font-size: 30px;
    color: #c0392b;
    margin-bottom: 35px;
    letter-spacing: 1px;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.foto-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    background-color: #FCC6BB;
}
.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.foto-item:hover img {
    transform: scale(1.08);
}
.foto-overlay {
    position: absolute;
    background: rgba(224, 92, 69, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.foto-item:hover .foto-overlay {
    opacity: 1;
}
.foto-overlay span {
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 20px;
}
.galeria-acciones {
    text-align: center;
    margin-top: 35px;
}
.btn-agregar {
    display: inline-block;
    background-color: #FAA18F;
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250, 161, 143, 0.4);
}
.btn-agregar:hover {
    background-color: #e05c45;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 92, 69, 0.4);
}

/* ── Contacto ── */
.contacto {
    padding: 60px 80px;
    background-color: #FEEBE7;
}
.contacto-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 550px;
    margin: 0 auto;
}
.input-campo {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #FCC6BB;
    border-radius: 12px;
    font-size: 15px;
    background-color: white;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    color: #555;
}
.input-campo:focus {
    border-color: #FAA18F;
    box-shadow: 0 0 8px rgba(250, 161, 143, 0.4);
}
.textarea {
    height: 130px;
    resize: vertical;
}
.btn-enviar {
    background-color: #FAA18F;
    color: white;
    border: none;
    padding: 14px 45px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250, 161, 143, 0.35);
}
.btn-enviar:hover {
    background-color: #e05c45;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 92, 69, 0.4);
}

/* ── Footer ── */
.footer {
    background-color: #FCC6BB;
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 14px;
    margin-top: 20px;
}