:root { --primary: #003366; --accent: #ffc107; --white: #ffffff; --bg-light: #f8f9fa; }
body { font-family: 'Poppins', sans-serif; scroll-behavior: smooth; overflow-x: hidden; color: #333; }

/* Navbar */
.navbar { background: var(--primary) !important; padding: 15px 0; border-bottom: 3px solid var(--accent); }
.navbar-brand { letter-spacing: 2px; font-weight: 800; }

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,30,0.7), rgba(0,0,30,0.7)), url('../img/logo4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero h1 { font-weight: 800; font-size: clamp(2.2rem, 6vw, 4.5rem); text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero .lead { font-weight: 400; letter-spacing: 1px; opacity: 0.9; }

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-decoration: none;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.05); color: #fff; background: #128c7e; }
.whatsapp-float i { font-size: 24px; margin-right: 10px; }

/* Cards & Sections */
.section-title { font-weight: 800; color: var(--primary); margin-bottom: 3rem; position: relative; padding-bottom: 10px; }
.section-title::after { content: ''; width: 60px; height: 4px; background: var(--accent); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

.card-custom { border-radius: 15px; transition: 0.4s ease; }
.card-custom:hover { transform: translateY(-10px); }

.icon-circle { width: 70px; height: 70px; background: #eef2f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--primary); }
.btn-pedido { border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }

/* Galería */
.gallery-item img { transition: 0.6s ease; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.15); }

/* FAQ Acordeón */
.accordion-button:not(.collapsed) { background-color: var(--primary); color: white; }
.accordion-button:focus { box-shadow: none; }
.accordion-item { border: none; margin-bottom: 10px; border-radius: 10px !important; }

/* Contact Form */
.form-control, .form-select { border-radius: 10px; padding: 12px; border: 1px solid #ddd; }
.form-control:focus { border-color: var(--primary); box-shadow: none; }

@media (max-width: 768px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}