/* ==========================================================
   RESET GENERAL
========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
}

body {
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* ==========================================================
   NAVBAR PREMIUM ULTRA SLIM
========================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 8px 40px;
    background: #ff4f9a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 9999;
    height: 55px;
}

.logo {
    width: 42px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 4px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ==========================================================
   HERO
========================================================== */
.hero {
    height: 100vh;
    background: url("assets/fondo.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.45);
    padding: 45px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 58px;
    text-shadow: 0 0 14px rgba(0,0,0,0.7);
}

.hero p {
    margin-top: 12px;
    font-size: 23px;
    opacity: 0.95;
}

.btn {
    margin-top: 18px;
    padding: 12px 26px;
    background: #ff7f50;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255,96,80,0.9);
}

/* ==========================================================
   SECCIONES GENERALES
========================================================== */
section {
    padding: 90px 25px;
    text-align: center;
}

h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #ff7f50;
    text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* ==========================================================
   FONDO PARALLAX
========================================================== */
.section-bg {
    background: url("assets/fondo1.png") center/cover fixed;
}

/* ==========================================================
   SERVICIOS — ESTILO PREMIUM SIN TARJETAS
========================================================== */

.servicios {
    color: white;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    padding: 20px;
}

.servicio-card {
    background: none !important;     /* sin tarjetas */
    border: none !important;         /* sin bordes */
    box-shadow: none !important;     /* sin sombra */
    padding: 0;
    text-align: center;
    color: #ffeaff;                  /* blanco suave */
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s ease;
    cursor: default;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* HOVER Premium (ligero y elegante) */
.servicio-card:hover {
    transform: translateY(-6px);
    opacity: 0.85;
}

/* ==========================================================
   PUBLICACIONES 
========================================================== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.galeria-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
    background: transparent;
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.galeria-item p {
    margin-top: 8px;
    color: white;
    font-size: 17px;
    text-align: center;
}

.galeria-item:hover {
    transform: scale(1.03);
}

/* ==========================================================
   CARTA DE COMIDA 
========================================================== */
.carta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    padding: 20px;
}

.carta-item {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    text-align: center;
    transition: 0.3s ease;
}

.carta-item:hover {
    transform: scale(1.03);
}

.carta-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

.carta-item h3 {
    margin-top: 10px;
    font-size: 22px;
    color: #fff;
}

.carta-item p {
    margin-top: 4px;
    font-size: 16px;
    color: #ffe7f8;
}

/* ==========================================================
   TESTIMONIOS PREMIUM
========================================================== */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonio-card {
    border-radius: 14px;
    background: rgba(255,228,255,0.75);
    padding: 28px;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.35s;
    box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

.testimonio-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 0 28px rgba(255,255,255,0.55);
}

.estrellas {
    margin-top: 10px;
    color: gold;
    font-size: 20px;
}

/* FORMULARIO TESTIMONIOS */
.formulario-testimonio {
    background: rgba(255,255,255,0.22);
    padding: 28px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 18px rgba(255,255,255,0.4);
}

.formulario-testimonio input,
.formulario-testimonio textarea,
.formulario-testimonio select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    margin-bottom: 16px;
    font-size: 18px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* ==========================================================
   CONTACTO
========================================================== */
.info-contacto {
    color: white !important;
    font-size: 20px;
    text-shadow: 0 0 8px black;
}

/* ==========================================================
   FOOTER
========================================================== */
footer {
    background: #222;
    color: white;
    padding: 22px;
    text-align: center;
    font-size: 17px;
}

/* ==========================================================
   ANIMACIONES
========================================================== */
.fade-up {
    opacity: 0;
    animation: fadeUp 1.4s ease forwards;
}

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

/* ==========================================================
   TIPOS DE EVENTOS — ESTILO PREMIUM SIN TARJETAS
========================================================== */

.event-types-section {
    padding: 90px 25px;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url("assets/fondo1.png") center/cover fixed;
    color: white;
    text-align: center;
}

.event-types-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ff7f50;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.event-subtitle {
    font-size: 20px;
    color: #ffeaff;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

/* CONTENEDOR LIMPIO SIN TARJETAS */
.event-types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* ESTILO DE CADA ITEM SIN CAJAS */
.event-card {
    background: none !important; /* adiós tarjetas */
    border: none !important;     /* adiós bordes */
    box-shadow: none !important; /* adiós sombra */
    padding: 0;
    transition: 0.3s;
    text-align: center;
}

/* ICONO GRANDE Y ELEGANTE */
.event-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 12px;
}

/* TÍTULO */
.event-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

/* DESCRIPCIÓN MINIMALISTA */
.event-card p {
    font-size: 17px;
    color: #e9d3f5;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.4;
}

/* EFECTO HOVER MINIMALISTA (OPCIONAL) */
.event-card:hover {
    transform: translateY(-6px);
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 600px) {
    .hero h1 { font-size: 40px; }
    .event-types-section h2 { font-size: 36px; }
    .event-card { padding: 22px; }
    .carta-img { height: 200px; }
}








