@charset "UTF-8";
/* CSS Document Ro 19-01-26 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --orange: #E8871E;
            --orange-hover: #D17518;
            --blue: #005cb9;
            --dark: #0F1629;
            --dark-2: #1A1D2B;
            --white: #FFFFFF;
            --gray-bg: #f2f7f7;
            --gray-text: #868686;
            --gray-dark: #515769;
            --footer-dark: #0d0d0d;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            color: #444;
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
            display: flex;
            flex-direction: column;
        }

        /* ===== SECTION ORDER — stats antes de evaluación ===== */
        section.hero { order: 0; }
        section.stats { order: 1; }
        section.evaluacion { order: 2; }
        section.servicio, div.photo-strip, section.minuta,
        section.banqueteria-nueva, section.video-section,
		section.comentarios-google2,
        section.centrar-info-atributos,
        section.certificaciones, div.footer-logo-bar,
        footer.footer { order: 3; }

        h1, h2, h3, h4 { font-family: 'League Spartan', sans-serif; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HERO LOGO (dentro del hero, superpuesto) ===== */
        .hero-logo {
            position: absolute;
            top: 24px;
            left: calc((100vw - 1200px) / 2 + 24px);
            z-index: 3;
        }
        .hero-logo svg { height: 74px; width: auto; }

        /* ===== PHOTO STRIP (4 fotos tras sección 3) ===== */
        .photo-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            height: 260px;
        }
        .photo-strip img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== MINUTA IMAGE ===== */
        .minuta-img-wrapper {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        }
        .minuta-img-wrapper img { width: 100%; height: auto; display: block; }

        /* ===== VIDEO POPUP MODAL ===== */
        .video-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .video-modal.open { display: flex; }
        .video-modal-inner {
            position: relative;
            width: 90vw;
            max-width: 960px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
        }
        .video-modal-inner iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        .video-modal-close {
            position: absolute;
            top: -38px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
            line-height: 1;
            padding: 4px 8px;
        }
        .video-modal-close:hover { color: var(--orange); }

        /* ===== PDF POPUP MODAL ===== */
        .pdf-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .pdf-modal.open { display: flex; }
        .pdf-modal-inner {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            width: 90vw;
            max-width: 1000px;
            height: 88vh;
            display: flex;
            flex-direction: column;
        }
        .pdf-modal-toolbar {
            background: var(--dark);
            padding: 10px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .pdf-modal-toolbar span {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'League Spartan', sans-serif;
        }
        .pdf-modal-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.4rem;
            cursor: pointer;
            line-height: 1;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .pdf-modal-close:hover { background: rgba(255,255,255,0.1); }
        .pdf-modal-inner iframe {
            flex: 1;
            border: none;
            width: 100%;
        }

        /* ===== BANQUETERIA REDISEÑO ===== */
        .banqueteria-nueva {
            background: var(--white);
            padding: 65px 0;
        }
        .banqueteria-nueva .container {
            display: grid;
            grid-template-columns: 200px 200px 1fr;
            gap: 28px;
            align-items: center;
        }
        .banqueteria-foto {
            width: 200px;
            height: 200px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
        .banqueteria-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banqueteria-nueva-text .section-tag { margin-bottom: 10px; }
        .banqueteria-nueva-text h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
            text-transform: uppercase;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .banqueteria-nueva-text h2 span { color: var(--blue); }
        .banqueteria-nueva-text p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 12px;
        }

        /* ===== CERTIFICACIONES CON IMAGEN ===== */
        .cert-img-wrapper {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 20px 14px;
            max-width: 500px;
            margin: 0 auto 0;
        }
        .cert-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .cert-labels {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            max-width: 700px;
            margin: 16px auto 0;
        }
        .cert-label-item { text-align: center; }
        .cert-label-item .cert-name {
            font-family: 'League Spartan', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--blue);
            margin-bottom: 2px;
        }
        .cert-label-item .cert-desc { font-size: 0.72rem; color: var(--gray-text); }

        /* ===== FOOTER LOGO ===== */
        .footer-logo-bar {
            background: var(--white);
            padding: 28px 0;
            text-align: center;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .footer-logo-bar svg { height: 72px; width: auto; margin: 0 auto; }
        .footer-logo-divider {
            width: 100%;
            height: 1px;
            background: rgba(0,0,0,0.18);
            margin-bottom: 20px;
        }


        /* ===== HERO — SECCIÓN 1 ===== */
        .hero {
            position: relative;
            min-height: 560px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(8, 15, 35, 0.45);
        }
        /* Degradados verticales: oscuro en borde, desvanece hacia el centro */
        .hero-grad-top,
        .hero-grad-bottom {
            position: absolute;
            left: 0; right: 0;
            height: 200px;
            z-index: 1;
            pointer-events: none;
        }
        .hero-grad-top {
            top: 0;
            background: linear-gradient(to bottom, rgba(8, 15, 35, 0.70) 0%, transparent 100%);
        }
        .hero-grad-bottom {
            bottom: 0;
            background: linear-gradient(to top, rgba(8, 15, 35, 0.70) 0%, transparent 100%);
        }
        /* Recuadro sin relleno sobre la imagen */
        .hero-inner-card {
            position: absolute;
            inset: 14px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.42); /*antes 0.72*/
            border-radius: 18px;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            padding: 80px calc(max((100vw - 1200px) / 2, 0px) + 40px) 48px;
        }
        .hero-left {
            display: flex;
            flex-direction: column;
            max-width: 680px;
        }
        .hero-badge {
            display: inline-block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }
        .hero-left h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .hero-left .subtitle {
            color: #ffffff;
            font-size: 1.05rem;
            line-height: 1.65;
            max-width: 480px;
        }

        /* ===== SECCIÓN 2 — EVALUACIÓN + FORMULARIO ===== */
        .evaluacion {
            background: var(--white);
            padding: 70px 0;
        }
        .evaluacion .container {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 50px;
            align-items: center;
        }
        .evaluacion-text .section-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--orange);
            margin-bottom: 10px;
        }
        .evaluacion-text h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--dark);
            text-transform: uppercase;
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .evaluacion-text h2 span { color: var(--orange); }
        .evaluacion-text p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 12px;
        }

        /* ===== FORM CARD ===== */
        .form-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
            border: 1px solid #eee;
        }
        .form-header {
            background: var(--dark-2);
            padding: 18px 24px;
            text-align: center;
        }
        .form-header h3 {
            color: var(--white);
            font-size: 0.92rem;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.3;
        }
        .form-urgency {
            background: var(--orange);
            padding: 9px 24px;
            text-align: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .form-body { padding: 22px 24px 26px; }
        .form-group { margin-bottom: 12px; }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #ddd;
            border-radius: 6px;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.85rem;
            color: #333;
            background: #fafafa;
            transition: border-color 0.2s;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: #aaa; font-size: 0.83rem; }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            background: var(--white);
        }
        .form-group textarea { resize: vertical; min-height: 60px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .radio-label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
        }
        .radio-group { display: flex; gap: 18px; }
        .radio-group label {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.83rem;
            color: #555;
            cursor: pointer;
        }
        .radio-group input[type="radio"] { accent-color: var(--orange); }
        .btn-submit {
            width: 100%;
            padding: 13px;
            background: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: 'League Spartan', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 6px;
        }
        .btn-submit:hover { background: #004fa3; }

        /* ===== SECTION BASE ===== */
        .section { padding: 65px 0; }
        .section-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--orange);
            margin-bottom: 8px;
        }
        .section-title {
            font-family: 'League Spartan', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.15;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-title span { color: var(--orange); }

        /* ===== SERVICIO ALIMENTACION ===== */
        .servicio { background: var(--white); }
        .servicio .container {
            background: #eaf1f8;
            border-radius: 20px;
            padding: 50px 44px;
            display: grid;
            grid-template-columns: 1fr 0.6fr;
            gap: 44px;
            align-items: center;
        }
        .servicio-img {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        /* Borde blanco inset sin relleno */
        .servicio-img::after {
            content: '';
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(255, 255, 255, 0.75);
            border-radius: 6px;
            pointer-events: none;
            z-index: 1;
        }
        .servicio-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transform: scale(1.08);
            display: block;
        }
        .servicio-text p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .servicio-text .highlight { color: var(--orange); font-weight: 600; }
        .check-list { list-style: none; margin-top: 20px; }
        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }
        .check-list li i {
            color: #22c55e;
            font-size: 0.85rem;
            width: 22px;
            height: 22px;
            background: rgba(34,197,94,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* ===== SERVICE CONCEPTS (cocina in situ / transportada) ===== */
        .service-concepts {
            list-style: none;
            margin: 20px 0 12px;
            display: flex;
            flex-direction: row;
            gap: 32px;
            justify-content: center;
        }
        .service-concepts li {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            background: #005cb9;
            border-radius: 14px;
            width: 190px;
            aspect-ratio: 2 / 1;
            text-align: center;
        }
        .service-concepts li i {
            color: #ffffff;
            font-size: 1.5rem;
        }
        .service-concepts li span {
            color: #ffffff;
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1.35;
            text-transform: uppercase;
            letter-spacing: 0.2px;
        }

        /* ===== MINUTA ===== */
        .minuta { background: var(--gray-bg); }
        .minuta .container {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 45px;
            align-items: center;
        }
        .minuta-text p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 14px;
        }
        .btn-minuta {
            display: inline-block;
            padding: 12px 28px;
            background: var(--orange);
            color: var(--white);
            border-radius: 8px;
            font-family: 'League Spartan', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: background 0.2s;
        }
        .btn-minuta:hover { background: var(--orange-hover); }
        .minuta-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        }
        .minuta-card-header {
            background: var(--dark);
            color: var(--white);
            padding: 12px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'League Spartan', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .minuta-card-header .accent { color: var(--orange); }
        .minuta-table { width: 100%; border-collapse: collapse; font-size: 0.62rem; }
        .minuta-table th {
            background: var(--orange);
            color: var(--white);
            padding: 7px 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.6rem;
            text-align: center;
        }
        .minuta-table td {
            padding: 5px 4px;
            border: 1px solid #f0f0f0;
            text-align: center;
            font-size: 0.6rem;
            color: #666;
            vertical-align: top;
            line-height: 1.3;
        }
        .minuta-table .row-label {
            background: #f5f5f5;
            font-weight: 700;
            text-align: left;
            padding-left: 8px;
            color: var(--dark);
            font-size: 0.6rem;
            white-space: nowrap;
            width: 80px;
        }

        /* ===== BANQUETERIA ===== */
        .banqueteria {
            position: relative;
            height: 420px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .banqueteria-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 0;
        }
        .banqueteria-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .banqueteria-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(15,22,41,0.88) 0%, rgba(15,22,41,0.45) 60%, transparent 100%);
            z-index: 1;
        }
        .banqueteria .container { position: relative; z-index: 2; }
        .banqueteria h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--white);
            text-transform: uppercase;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .banqueteria h2 span { color: var(--orange); }
        .banqueteria p {
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
            max-width: 450px;
            line-height: 1.7;
        }

        /* ===== STATS ===== */
        .stats { background: var(--dark); padding: 50px 0; }
        .stats .container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .stats-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.85);
            font-family: 'League Spartan', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            text-align: center;
            padding: 28px 16px;
            background: rgba(255,255,255,0.04);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 14px;
            background: rgba(232,135,30,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .stat-icon i { color: var(--orange); font-size: 1.7rem; }
        .stat-icon svg { width: 46px !important; height: 46px !important; }
        .stat-number {
            font-family: 'League Spartan', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        /* ===== VIDEO — justo antes de certificaciones ===== */
        .video-section {
            position: relative;
            text-align: center;
            overflow: hidden;
        }
        .video-bg {
            position: relative;
            width: 100%;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .video-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .video-bg-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 18, 40, 0.76);
        }
        .video-content {
            position: relative;
            z-index: 2;
            padding: 44px 24px;
            max-width: 860px;
            margin: 0 auto;
            width: 100%;
        }
        .video-section .section-tag { margin-bottom: 10px; color: var(--orange); }
        .video-section .section-title {
            max-width: 680px;
            margin: 0 auto 12px;
            color: #fff;
        }
        .video-section .section-title span { color: var(--orange); }
        .video-section .video-desc {
            color: rgba(255,255,255,0.8);
            max-width: 620px;
            margin: 0 auto 32px;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .video-wrapper {
            max-width: 760px;
            margin: 0 auto;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
            position: relative;
            aspect-ratio: 16/9;
            cursor: pointer;
        }
        .video-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* iframe oculto hasta que se hace click */
        .video-wrapper iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: none;
            display: none;
        }
        .video-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(15,22,41,0.42);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .video-overlay:hover { background: rgba(15,22,41,0.28); }
        .play-btn {
            width: 72px;
            height: 72px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            box-shadow: 0 4px 24px rgba(232,135,30,0.45);
        }
        .play-btn:hover { transform: scale(1.08); }
        .play-btn i { color: var(--white); font-size: 1.5rem; margin-left: 4px; }


        /* ===== CERTIFICACIONES ===== */
        .certificaciones { background: var(--white); text-align: center; }
        .certificaciones .section-title { margin: 0 auto 10px; }
        .certificaciones > .container > p {
            color: var(--gray-text);
            max-width: 750px;
            margin: 0 auto 36px;
            font-size: 0.88rem;
            line-height: 1.75;
        }
        .cert-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .cert-item {
            background: var(--gray-bg);
            border-radius: 10px;
            padding: 20px 24px;
            text-align: center;
            min-width: 130px;
        }
        .cert-icon-circle {
            width: 68px;
            height: 68px;
            background: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }
        .cert-icon-circle span {
            color: var(--orange);
            font-family: 'League Spartan', sans-serif;
            font-weight: 900;
            font-size: 0.65rem;
            text-align: center;
            line-height: 1.1;
            text-transform: uppercase;
        }
        .cert-item .cert-name {
            font-family: 'League Spartan', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .cert-item .cert-desc { font-size: 0.7rem; color: var(--gray-text); }

        /* ===== FOOTER ===== */
        .footer { background: var(--footer-dark); padding: 22px 0; text-align: center; }
        .footer p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
        .footer a { color: rgba(255,255,255,0.4); }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero { min-height: 420px; }
            .hero-inner-card { inset: 10px; padding: 70px 24px 36px; }
            .hero-logo { left: 20px; }
            .evaluacion .container { grid-template-columns: 1fr; gap: 30px; }
            .evaluacion .container { grid-template-columns: 1fr; }
            .evaluacion .container .form-card { max-width: 520px; }
            .servicio .container,
            .minuta .container { grid-template-columns: 1fr; gap: 30px; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .banqueteria-nueva .container { grid-template-columns: 1fr; }
            .banqueteria-fotos { flex-direction: row; }
            .photo-strip { grid-template-columns: 1fr 1fr; height: 320px; }
        }
        @media (max-width: 640px) {
            .hero-left h1 { font-size: 1.9rem; }
            .hero-logo { left: 16px; top: 16px; }
            .hero-logo svg { height: 52px; }
            .section { padding: 45px 0; }
            .section-title { font-size: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            /* Photo strip: 2x2 con altura suficiente para las 4 imágenes */
            .photo-strip { grid-template-columns: 1fr 1fr; height: 240px; }
            .cert-labels { grid-template-columns: repeat(2, 1fr); }
            .banqueteria-nueva-text h2 { font-size: 1.7rem; }
            .cert-row { flex-direction: column; align-items: center; }
            .evaluacion-text h2 { font-size: 1.5rem; }
            /* Banquetería: fotos horizontales, texto debajo */
            .banqueteria-nueva .container { grid-template-columns: 1fr 1fr; gap: 12px; }
            .banqueteria-nueva-text { grid-column: 1 / -1; }
            .banqueteria-foto { width: 100%; height: 130px; }
            /* Servicio mobile */
            .service-concepts { flex-direction: column; align-items: center; gap: 16px; }
            .service-concepts li { width: 200px; aspect-ratio: 3 / 1; }
            .servicio-img img { height: 220px; }
        }
		
		.d-none {
           display: none !important;
        }

        .alerta-enviado {
            width: 100%;
	        min-height:50px;
	        height: auto;
	        border:1px solid #32a45e;
	        /*background-color: #d7f0d6;*/
	        margin-left: auto;
	        margin-right: auto;
	        padding: 10px;
	        font-family: Tahoma, Geneva, sans-serif;
	        font-size: 14px;
	        text-align:center !important;
	        color: #FFFFFF !important;
	        border-radius: 10px;
            background: #32a45e;
           /* box-shadow:  20px 20px 60px #0f0f0f,
             -20px -20px 60px #000000;*/
          }

         .icono-alerta-enviado {
            width: 40px;
	        height: 40px;
	        border:2px solid #32a45e;
	        background-color: #32a45e;
	        border-radius: 100%;
	        margin-left: auto;
	        margin-right: auto;
            margin-top: -25px;
	        text-align:center;
	        font-size: 32px;
	        color: #32a45e;
}

           .alerta-error {
            width: 100%;
	        min-height:50px;
	        height: auto;
	        border:1px solid #e40513;
	       /* background-color: #d7f0d6;*/
	        margin-left: auto;
	        margin-right: auto;
	        padding: 10px;
	        font-family: Tahoma, Geneva, sans-serif;
	        font-size: 14px;
	        text-align:center !important;
	        color: #FFFFFF !important;
	        border-radius: 10px;
            background: #e40513;
           /* box-shadow:  20px 20px 60px #0f0f0f,
             -20px -20px 60px #000000;*/
	      
}
		/* ===== COMENTARIOS GOOGLE ===== */
		.comentarios-google2 {
            width:100%;
	        height: auto;
            min-height:580px;
	        /*background-color:#ececec;*/
	        background-color: #eaf1f8;
	        padding-top: 50px;
	        margin-top: -10px;
        }
		
		.Titulo-comentarios-google span {
        color: var(--orange);
        }

		.Titulo-comentarios-google {
        width: 930px;
        height: auto;
        text-align: center;
        /* font-family: 'Anton', sans-serif; */
        /*font-size: 37px;*/
        /*color: #515869;*/
        margin-left: auto;
        margin-right: auto;
        line-height: 41px;
        margin-top: 10px;
        font-family: "League Spartan", sans-serif;
        font-style: normal;
        text-transform: uppercase;
		font-size: 2rem;
        font-weight: 800;
        color: var(--dark);
        }
		
	    .Bajada-comentarios-google {
        width: 730px;
        height: auto;
        text-align: center;
        /*font-family: Tahoma, Geneva, sans-serif;*/
	    font-family: 'Open Sans', Arial, sans-serif;
        font-size: 14px;
        color: #515869;
        margin-left: auto;
        margin-right: auto;
        margin-top: 5px;
        }
		
	   .comentarios-google {
            width:1200px;
            height:auto;
	        margin-left: auto;
	        margin-right: auto;
       }
		
@media all and (max-width: 980px) {
	
       .comentarios-google {
            width:100%;
       }

       .Titulo-comentarios-google {
	        width:100%;
	        font-size: 30px;
	        line-height: 33px;
	        padding-left: 15px;
	        padding-right: 15px;
       }

      .Bajada-comentarios-google {
	        width:330px;
      }
}
		
.icono-atributos {
    width: 70px;
    max-width: 70px;
    max-height: 70px;
    min-height: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
	
.centrar-info-atributos {
    overflow: hidden;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #E5E5E5;
    background-size: cover;
}

.info-atributos {
    display: inline-table;
    border: 1px solid #FFFFFF;
    width: 320px;
    max-width: 320px;
    max-height: 540px;
    min-height: 540px;
    border-radius: 10px;
    margin: 5px 10px 5px 10px;
    text-align: justify;
    font-family: 'Ultra', serif;
    font-size: 12px;
    padding: 5px 10px 0px 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.28);
}

.Titulo-centrado-atributos {
    display: inline-table;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin: 2px;
    text-align: center;
    font-family: "League Spartan", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    /*font-size: 33px;
    color: #515869;
    font-weight: 600;*/
	font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.Titulo-centrado-atributos span {
        color: var(--orange);
        }
	
.titulo-atributos {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    line-height: 25px;
    text-align: center;
    font-size: 24px;
    color: #515869;
    font-family: "League Spartan", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 800;
}
	
.bajada-atributos {
    min-height: 52px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 15px;
    text-align: center;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    color: #515869;
}
	
.Bajada-Titulo-atributos {
    display: inline-table;
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    color: #515869;
}
	
.caja-Titulo-atributos {
    overflow: hidden;
    text-align: center;
    margin: auto;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 60px;
}
	
/* Color base */
.mi-boton-Ro {
  display: inline-table;
  width: 100%;
  min-height: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  border-radius: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 10px;
  background-color: #005CB9;
  color:#FFFFFF;
  transition: 0.3s; /* Suaviza el cambio */
  text-decoration: none;
}

/* Color al pasar el mouse */
.mi-boton-Ro:hover {
  background-color:#2F2F2F;
  color: #FFFFFF;
}


.accordion-Ro {
    width: 100%;
    margin: 20px auto;
	display:inline-table;
}
.accordion-Ro label {
    font-family: Tahoma, Geneva, sans-serif;
	padding: 5px 5px 5px 5px;
    position: relative;
    display: block;
    height: 33px;
    cursor: pointer;
	color: #515869;
    line-height: 15px;
    font-size: 12px;
    background: #fff;
	text-transform: uppercase;
	border-bottom:1px solid #D8D8D8;
	font-weight: 400;
}

.accordion-Ro label:hover {
    color: #fff;
    background: #ccc;
}


.accordion-Ro label:before {  
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  margin-top: 2px;
  margin-right: 10px;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  color: #ED8300;
}


.accordion-Ro input + label {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.accordion-Ro input:checked + label,
.accordion-Ro input:checked + label:hover {
    margin-bottom: -6px;
    background: #F1F1F1;
    color: #777;
}

.accordion-Ro input:checked + label,
.accordion-Ro input:checked + label:hover {
    content: "+";
}

.accordion-Ro input {
    display: none;
}
.accordion-Ro .article {
    background: #f4f4f4;
    overflow: hidden;
    height: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
    color: #515869;
	text-align: left;
}
.accordion-Ro .article p {
    font-style: italic;
    color: #777;
    line-height: 23px;
    font-size: 14px;
    padding: 20px;
}
.accordion-Ro input:checked ~ .article {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 25px;
}
.accordion-Ro input:checked ~ .article.ac-small {
	min-height: 100px;
	height: auto;
}
.accordion-Ro input:checked ~ .article.ac-medium {
    height: 195px;
}
.accordion-Ro input:checked ~ .article.ac-large {
    height: 245px;
}

.characters {
  -webkit-animation: box 800ms linear 0s 1 forwards;
}

@media (max-width: 1280px) {
  .accordion-Ro {
    width: 100%;
  }
}

@media all and (max-width: 980px) {
	
.Titulo-centrado-atributos {
	width: 350px;
	margin-left: auto;
	margin-right: auto;
    font-size: 27px;
	line-height: 29px;
}  
	
	
.Bajada-Titulo-atributos {
	width: 350px;
    font-size: 13px;
	margin-left: auto;
	margin-right: auto;
}
	
.info-atributos  {
            margin-top: 20px;
}

}