:root {
    --mustard: #F7B42A;
    --aqua: #5FB5A2;
    --beige: #FCF4D6;
    --black: #111212;
    --gray-light: #F4F5F7;
    --gray-med: #A3A4A6;
    --gray-dark: #23272B;
    --white: #FFFFFF;
    --font-main: 'Figtree', sans-serif;
    --container: 1200px;
    --radius: 12px;
}

body { margin: 0; font-family: var(--font-main); color: var(--black); background-color: var(--gray-light); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h2, h3, h4 { color: var(--black); font-weight: 800; text-wrap: balance; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.3rem; margin-bottom: 1rem; }
p { color: #444; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.max-800 { max-width: 800px; margin: 0 auto; }

/* Alternancia de Fondos (CRÍTICO) */
.bg-white { background-color: var(--white); }
.bg-alt { background-color: var(--gray-light); }

/* Nav y Botones */
.nav-link { color: var(--white); margin-right: 20px; font-weight: 600; font-size: 0.95rem; }
.nav-link:hover { color: var(--mustard); }
.btn-nav { background: var(--mustard); color: var(--black); padding: 8px 16px; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.desktop-nav { display: block; }

/* Grids */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* Cards */
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.card:hover { transform: translateY(-5px); }
.card h3, .card p { padding: 0 1.5rem; }
.card h3 { margin-top: 1.5rem; }
.card p { padding-bottom: 1.5rem; }
.card-header { height: 6px; width: 100%; }
.bg-mustard { background: var(--mustard); }
.bg-aqua { background: var(--aqua); }
.bg-black { background: var(--black); }

/* Contacto */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.phone-display { font-size: 1.3rem; font-weight: 800; color: var(--aqua); }
.form-container { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* Formularios */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 12px; border: 1px solid var(--gray-med); border-radius: 6px; box-sizing: border-box; font-family: var(--font-main); }
.btn-full { width: 100%; background: var(--black); color: var(--white); padding: 14px; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; margin-top: 1rem; display: inline-flex; justify-content: center; gap: 8px; align-items: center; }
.btn-full:hover { background: #333; }

/* Features */
.feature { background: var(--gray-light); padding: 2rem; border-radius: var(--radius); border-left: 5px solid var(--aqua); }

/* ---------------------------------------------------- */
/* NUEVO FAQ ACORDEÓN (Estilo Imagen) */
/* ---------------------------------------------------- */
.faq-accordion {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-accordion[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-accordion summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
}

/* Remover flecha por defecto en Chrome/Safari */
.faq-accordion summary::-webkit-details-marker { display: none; }

.faq-accordion summary i {
    color: var(--mustard);
    transition: transform 0.3s ease;
}

/* Rotar flecha al abrir */
.faq-accordion[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------- */
/* DETALLES & FOOTER (Estilo Tapicería) */
/* ---------------------------------------------------- */
.boxed-title-container { text-align: center; margin-bottom: 4rem; }
.boxed-title { display: inline-block; padding: 15px 40px; border: 3px solid #ccc; font-size: 2rem; font-weight: 800; text-transform: uppercase; color: var(--black); letter-spacing: -1px; background: var(--white); }
.details-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.detail-col { display: flex; flex-direction: column; align-items: center; }
.icon-circle { width: 70px; height: 70px; background-color: var(--mustard); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--black); }
.detail-col h4 { text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 1rem; }
.detail-list li, .route-list li { margin-bottom: 0.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; width: 100%; display: flex; justify-content: center; gap: 5px; }
.route-list i { color: var(--mustard); }
.gps-box { border: 1px solid #ddd; padding: 10px 15px; border-radius: 4px; font-family: monospace; font-weight: 700; margin-bottom: 1rem; background: #fdfdfd; }
.detail-link, .contact-links-detail a { color: var(--black); font-weight: 700; }
.detail-link:hover, .contact-links-detail a:hover { color: var(--mustard); }

/* Footer */
.main-footer { background-color: var(--gray-dark); color: #ccc; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; }
.footer-logo { color: var(--white); font-weight: 800; font-size: 2rem; text-transform: uppercase; line-height: 1; margin-bottom: 1rem; }
.mustard-line { width: 50px; height: 4px; background-color: var(--mustard); margin-bottom: 1.5rem; }
.footer-col h4 { color: var(--mustard); text-transform: uppercase; font-size: 1rem; margin-bottom: 1.5rem; }
.footer-list li { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.footer-list i { color: var(--mustard); width: 20px; text-align: center; }
.footer-bottom { text-align: center; font-size: 0.85rem; color: #777; }

/* Whatsapp Float */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; border: none; font-size: 30px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; z-index: 999; }

@media (max-width: 768px) {
    .brand-title { font-size: 2.5rem; }
    .hero-bullets { flex-direction: column; gap: 1rem; }
    .contact-wrapper, .details-grid, .footer-grid, .details-layout { grid-template-columns: 1fr; text-align: center; }
    .desktop-nav { display: none; }
    .hero-actions { flex-direction: column; width: 100%; }
}