* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c2420;
    line-height: 1.6;
    background-color: #faf7f0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==================== HEADER ==================== */
.header {
    background: #e5d94f;
    border-top: 6px solid #2c2420;
}

.header .container {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar {
    background: #2c2420;
    color: #d4c9b8;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 25px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info i, .social-links a {
    margin-right: 8px;
    color: #e5d94f;
}

.social-links a {
    margin-left: 15px;
    color: #d4c9b8;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: #e5d94f;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
}

.logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text h1 {
    font-size: 30px;
    color: #2c2420;
    font-weight: 700;
    line-height: 1.3;
}

.text p {
    font-size: 14px;
    color: #2c2420;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #2c2420;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.nav a.active,
.nav a:hover {
    color: white;
}

.nav a.active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #2c2420;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #e5d94f;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c2420;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.mobile-menu a.active,
.mobile-menu a:hover {
    color: white;
    border-bottom: 2px solid white;
    padding-left: 10px;
}

.close-btn {
    align-self: flex-end;
    font-size: 32px;
    cursor: pointer;
    color: #2c2420;
    background: none;
    border: none;
    padding: 5px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.close-btn:hover {
    color: white;
    transform: scale(1.1);
}

/* ==================== TÍTULO DE PÁGINA ==================== */
.page-title {
    padding: 60px 0 40px;
    background: #faf7f0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #2c2420;
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: #e5d94f;
    margin: 0 auto 20px;
}

.page-title p {
    color: #6b5a48;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== INFORMACIÓN DE CONTACTO ==================== */
.info-contacto {
    padding: 0 0 50px;
    background: #faf7f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: #f0ebe0;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #e5d94f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 1.5rem;
    color: #2c2420;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #2c2420;
}

.info-card p {
    font-size: 0.85rem;
    color: #6b5a48;
    line-height: 1.5;
}

/* ==================== FORMULARIO Y MAPA ==================== */
.formulario-mapa {
    padding: 0 0 60px;
    background: #faf7f0;
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.formulario-container {
    background: #f0ebe0;
    border-radius: 24px;
    padding: 35px;
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 1.5rem;
    color: #2c2420;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b5a48;
    font-size: 0.85rem;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2420;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d4c9b8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e5d94f;
    box-shadow: 0 0 0 3px rgba(229,217,79,0.2);
}

.btn-enviar {
    background: #e5d94f;
    color: #2c2420;
    border: none;
    padding: 14px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-enviar:hover {
    background: #2c2420;
    color: #e5d94f;
    transform: translateY(-2px);
}

.mapa-container {
    background: #f0ebe0;
    border-radius: 24px;
    padding: 35px;
}

.mapa-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c2420;
}

.mapa-wrapper {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
}

.mapa-info {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mapa-info p {
    font-size: 0.8rem;
    color: #6b5a48;
}

.mapa-info i {
    color: #e5d94f;
    margin-right: 5px;
}

/* ==================== REDES SOCIALES ==================== */
.redes-sociales {
    padding: 60px 0;
    background: #f0ebe0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #e5d94f20;
    color: #e5d94f;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2rem;
    color: #2c2420;
}

.section-header .highlight {
    color: #e5d94f;
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: #e5d94f;
    margin: 15px auto;
}

.section-header p {
    color: #6b5a48;
    max-width: 600px;
    margin: 0 auto;
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.red-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.red-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.red-card i {
    font-size: 2.2rem;
}

.red-card.facebook i { color: #1877f2; }
.red-card.instagram i { color: #e4405f; }
.red-card.youtube i { color: #ff0000; }
.red-card.whatsapp i { color: #25d366; }

.red-info h3 {
    font-size: 1rem;
    color: #2c2420;
    margin-bottom: 3px;
}

.red-info p {
    font-size: 0.75rem;
    color: #6b5a48;
}

/* ==================== HORARIO ==================== */
.horario {
    padding: 60px 0;
    background: #faf7f0;
}

.horario-box {
    background: linear-gradient(135deg, #2c2420 0%, #3d322c 100%);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    color: white;
}

.horario-box i {
    font-size: 2.5rem;
    color: #e5d94f;
    margin-bottom: 15px;
}

.horario-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.horario-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.horario-item {
    text-align: center;
}

.horario-item span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.horario-item strong {
    font-size: 1.1rem;
    color: #e5d94f;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 60px 0;
    background: #f0ebe0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-pregunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-pregunta:hover {
    background: #faf7f0;
}

.faq-pregunta h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2420;
}

.faq-pregunta i {
    color: #e5d94f;
    transition: transform 0.3s;
}

.faq-item.active .faq-pregunta i {
    transform: rotate(180deg);
}

.faq-respuesta {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.active .faq-respuesta {
    padding: 0 25px 18px 25px;
    max-height: 200px;
}

.faq-respuesta p {
    font-size: 0.85rem;
    color: #6b5a48;
    line-height: 1.6;
}

/* ==================== FOOTER REDISEÑADO ==================== */
.footer {
    background: #1a1512;
    position: relative;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(229, 217, 79, 0.15);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e5d94f, #c4b82a, #e5d94f);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-col {
    color: #cbc3b0;
}

.footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 217, 79, 0.3);
}

.footer-logo-text h3 {
    color: #e5d94f;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
}

.footer-logo-text p {
    font-size: 0.7rem;
    color: #9e8e7a;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbc3b0;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-block;
    background: rgba(229, 217, 79, 0.12);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #e5d94f;
    border: 1px solid rgba(229, 217, 79, 0.25);
}

.footer-col h4 {
    color: #e5d94f;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e5d94f, transparent);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbc3b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #e5d94f;
    opacity: 0.6;
    transition: all 0.25s;
}

.footer-links a:hover {
    color: #e5d94f;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: #cbc3b0;
    transition: transform 0.25s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 217, 79, 0.08);
    border-radius: 50%;
    color: #e5d94f;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.contact-item:hover i {
    background: #e5d94f;
    color: #1a1512;
    transform: scale(1.05);
}

.contact-item span {
    flex: 1;
    line-height: 1.5;
}

.social-footer {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    color: #cbc3b0;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(229, 217, 79, 0.2);
}

.social-footer a:hover {
    background: #e5d94f;
    color: #1a1512;
    transform: translateY(-5px);
    border-color: #e5d94f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(229, 217, 79, 0.12);
    font-size: 0.75rem;
    color: #8a7a68;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.heart {
    color: #e5d94f;
    font-size: 0.7rem;
}

/* ==================== SCROLL TOP BUTTON ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e5d94f;
    color: #2c2420;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #2c2420;
    color: #e5d94f;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1000px) {
    .nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .logo {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    .text h1 {
        font-size: 16px;
    }
    .text p {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .redes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .contact-info {
        justify-content: center;
    }
    .page-title {
        padding: 40px 0 30px;
    }
    .page-title h1 {
        font-size: 2rem;
    }
    .info-contacto {
        padding: 0 0 40px;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contacto-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .formulario-container {
        padding: 25px;
    }
    .mapa-container {
        padding: 25px;
    }
    .mapa-wrapper {
        height: 250px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .redes-sociales {
        padding: 40px 0;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .redes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .horario {
        padding: 40px 0;
    }
    .horario-box {
        padding: 30px 20px;
    }
    .horario-grid {
        flex-direction: column;
        gap: 15px;
    }
    .faq {
        padding: 40px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col:first-child {
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col h4 {
        display: block;
        text-align: center;
    }
    .footer-links li {
        text-align: center;
    }
    .footer-links a {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .social-footer {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
    .text h1 {
        font-size: 13px;
    }
    .text p {
        font-size: 10px;
    }
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    .page-title {
        padding: 30px 0 25px;
    }
    .page-title h1 {
        font-size: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .formulario-container {
        padding: 20px;
    }
    .mapa-container {
        padding: 20px;
    }
    .mapa-wrapper {
        height: 200px;
    }
    .mapa-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .btn-enviar {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .red-card {
        padding: 15px;
    }
    .red-card i {
        font-size: 1.5rem;
    }
    .faq-pregunta {
        padding: 12px 15px;
    }
    .faq-pregunta h3 {
        font-size: 0.85rem;
    }
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    .footer-logo-text h3 {
        font-size: 0.85rem;
    }
}