        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #EBEBEB;
            color: #333;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background-color: #10367D;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-style: normal;
            color: white;
        }

        nav {
            display: flex;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0077B6;
        }

        .contact-btn {
            background-color: #0077B6;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .contact-btn:hover {
            background-color: #005a8d;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px 40px;
        }

        .customers {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .customer-avatars {
            display: flex;
            margin-left: -10px;
        }

        .avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 3px solid #EBEBEB;
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: white;
        }

        .avatar-m {
            background: linear-gradient(135deg, #FF6B6B, #FF8E72);
        }

        .avatar-o {
            background: linear-gradient(135deg, #4ECDC4, #44A3A0);
        }

        .avatar-a {
            background: linear-gradient(135deg, #FFE66D, #FFD93D);
            color: #333;
        }

        .avatar-l {
            background: linear-gradient(135deg, #95E1D3, #6BC98D);
        }

        .customer-text {
            font-size: 16px;
            color: #666;
        }

        .customer-text strong {
            color: #333;
            font-weight: 600;
        }

        h1 {
            font-size: 72px;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 700;
            color: #10367D;
        }

        .subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 35px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background-color: #0077B6;
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            display: inline-block;
            transition: background-color 0.3s, transform 0.2s;
        }

        .cta-btn:hover {
            background-color: #10367D;
            transform: translateY(-2px);
        }

        /* Gallery Section */
        .gallery {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            padding: 60px 40px;
            flex-wrap: wrap;
        }

        .gallery-item {
            width: 320px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
            text-align: center;
            padding: 20px;
        }

        .gallery-item:nth-child(1) {
            transform: rotate(-5deg);
        }

        .gallery-item:nth-child(2) {
            transform: rotate(2deg);
        }

        .gallery-item:nth-child(3) {
            transform: rotate(-3deg);
        }

        .gallery-item:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer Badge */
        .footer-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: white;
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            header {
                padding: 20px 40px;
            }

            h1 {
                font-size: 56px;
            }

            .subtitle {
                font-size: 16px;
            }

            .gallery {
                padding: 40px 20px;
                gap: 20px;
            }

            .gallery-item {
                width: 280px;
                height: 350px;
            }

            .muro-section {
                padding: 0 40px;
            }

            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .muro-header h2 {
                font-size: 36px;
            }

        }

        @media (max-width: 768px) {
            header {
                padding: 16px 20px;
                flex-direction: column;
                gap: 16px;
            }

            .logo {
                font-size: 24px;
            }

            nav {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                font-size: 14px;
            }

            .contact-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            h1 {
                font-size: 40px;
                margin-bottom: 20px;
            }

            .subtitle {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .cta-btn {
                padding: 14px 32px;
                font-size: 16px;
            }

            .customers {
                flex-direction: column;
                gap: 12px;
            }

            .customer-text {
                font-size: 14px;
            }

            .gallery {
                flex-direction: column;
                padding: 30px 20px;
                gap: 15px;
            }

            .gallery-item {
                width: 100%;
                max-width: 400px;
                height: 300px;
                transform: rotate(0deg) !important;
            }

            .testimonial {
                padding: 50px 20px;
            }

            .testimonial h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .testimonial-author {
                flex-direction: column;
                gap: 15px;
            }

            .author-avatar {
                width: 60px;
                height: 60px;
            }

            .author-info {
                text-align: center;
            }

            .author-info h3 {
                font-size: 18px;
            }

            .author-info p {
                font-size: 14px;
            }


            .muro-section {
                padding: 0 20px;
                margin: 40px auto;
            }

            .muro-header h2 {
                font-size: 28px;
            }

            .muro-header p {
                font-size: 15px;
            }

            .filter-bar {
                flex-direction: column;
                gap: 12px;
                padding: 16px 20px;
            }

            .filter-bar h3 {
                font-size: 16px;
            }

            .filter-controls {
                width: 100%;
                flex-direction: column;
            }

            .filter-select {
                width: 100%;
                padding: 12px 16px;
            }

            .comments-grid {
                grid-template-columns: 1fr;
            }

            .comment-card {
                padding: 20px;
            }

            .comment-text {
                font-size: 14px;
            }

            .testimonial {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 12px 16px;
                gap: 12px;
            }

            .logo {
                font-size: 20px;
            }

            nav {
                gap: 10px;
                font-size: 12px;
            }

            nav a {
                font-size: 12px;
            }

            .contact-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .hero {
                padding: 40px 16px 30px;
            }

            h1 {
                font-size: 32px;
                margin-bottom: 16px;
            }

            .subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .cta-btn {
                padding: 12px 28px;
                font-size: 14px;
            }

            .customer-avatars {
                margin-left: 0;
            }

            .avatar {
                width: 36px;
                height: 36px;
                font-size: 14px;
                margin-left: -8px;
            }

            .customer-text {
                font-size: 12px;
            }

            .gallery {
                padding: 20px 16px;
                gap: 12px;
            }

            .gallery-item {
                width: 100%;
                height: 250px;
            }

            .testimonial {
                padding: 40px 16px;
            }

            .testimonial h2 {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
            }

            .author-info h3 {
                font-size: 16px;
            }

            .author-info p {
                font-size: 13px;
            }


            .muro-section {
                padding: 0 16px;
                margin: 30px auto;
            }

            .muro-header h2 {
                font-size: 24px;
            }

            .muro-header p {
                font-size: 14px;
            }

            .filter-bar {
                padding: 12px 16px;
            }

            .filter-bar h3 {
                font-size: 14px;
            }

            .comment-card {
                padding: 16px;
            }

            .comment-tag {
                font-size: 12px;
                padding: 4px 12px;
            }

            .comment-text {
                font-size: 13px;
            }

            .comment-footer {
                font-size: 12px;
            }

            .btn-ver-muro {
                width: 100%;
                justify-content: center;
                font-size: 13px;
            }

            .footer-badge {
                bottom: 10px;
                right: 10px;
                font-size: 12px;
                padding: 8px 16px;
            }
        }
                .testimonial {
            text-align: center;
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial h2 {
            font-size: 35px;
            line-height: 1.3;
            font-weight: 700;
            color: #10367D;
            margin-bottom: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #666;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info {
            text-align: left;
        }

        .author-info h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: #888;
        }
                .normas-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 60px;
        }

        .normas-container {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .normas-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .normas-header h2 {
            font-size: 38px;
            font-weight: 700;
            color: #10367D;
            margin-bottom: 12px;
        }

        .normas-header p {
            font-size: 17px;
            color: #666;
        }

        .normas-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 32px;
        }

        .norma-card {
            text-align: center;
            padding: 32px 24px;
        }

        .norma-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: #0077B6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .norma-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .norma-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
        }

        @media (max-width: 1024px) {
            .normas-section {
                padding: 0 40px;
            }

            .normas-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .normas-section {
                margin: 50px auto;
                padding: 0 20px;
            }

            .normas-container {
                padding: 40px 20px;
            }

            .normas-header h2 {
                font-size: 28px;
            }

            .normas-header p {
                font-size: 15px;
            }

            .normas-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .norma-card {
                padding: 24px 16px;
            }

            .norma-icon {
                width: 70px;
                height: 70px;
            }

            .norma-card h3 {
                font-size: 19px;
            }

            .norma-card p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .normas-section {
                margin: 40px auto;
                padding: 0 16px;
            }

            .normas-container {
                padding: 30px 16px;
                border-radius: 16px;
            }

            .normas-header h2 {
                font-size: 24px;
            }

            .normas-header p {
                font-size: 14px;
            }

            .normas-grid {
                gap: 16px;
            }

            .norma-card {
                padding: 20px 12px;
            }

            .norma-icon {
                width: 60px;
                height: 60px;
            }

            .norma-card h3 {
                font-size: 17px;
            }

            .norma-card p {
                font-size: 13px;
            }
        }
     .muro-section {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 60px;
        }

        .muro-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .muro-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #10367D;
            margin-bottom: 12px;
        }

        .muro-header p {
            font-size: 18px;
            color: #666;
        }

        .filter-bar {
            background: white;
            padding: 24px 32px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .filter-bar h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .filter-controls {
            display: flex;
            gap: 12px;
        }

        .filter-select {
            padding: 10px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:hover {
            border-color: #0077B6;
        }

        .comments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .comment-card {
            background: white;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .comment-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .comment-card.btn-card {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .comment-tag {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
        }

        .tag-idea {
            background: #d4f4dd;
            color: #1e7e34;
        }

        .tag-sugerencia {
            background: #cfe2ff;
            color: #084298;
        }

        .tag-problema {
            background: #f8d7da;
            color: #842029;
        }

        .tag-agradecimiento {
            background: #e2d9f3;
            color: #5a2d82;
        }

        .comment-time {
            font-size: 13px;
            color: #999;
        }

        .comment-text {
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 16px;
        }

        .comment-footer {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #666;
            font-size: 14px;
        }

        .heart-icon {
            color: #999;
        }

        .btn-ver-muro {
            padding: 10px 24px;
            background: #0077B6;
            color: white;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            margin-top: 16px;
        }

        .btn-ver-muro:hover {
            background: #10367D;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 54, 125, 0.3);
        }

        .btn-card .btn-ver-muro {
            margin-top: 0;
            padding: 14px 32px;
            font-size: 16px;
        }

        @media (max-width: 1024px) {
            .muro-section {
                padding: 0 40px;
            }

            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .muro-header h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .muro-section {
                padding: 0 24px;
                margin: 40px auto;
            }

            .muro-header h2 {
                font-size: 32px;
            }

            .muro-header p {
                font-size: 16px;
            }

            .filter-bar {
                flex-direction: column;
                gap: 16px;
                align-items: stretch;
            }

            .filter-controls {
                width: 100%;
                flex-direction: column;
            }

            .filter-select {
                width: 100%;
            }

            .comments-grid {
                grid-template-columns: 1fr;
            }
        }
