.page-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #10367D;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.page-header p {
    font-size: 18px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.content-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #10367D;
    margin-top: 35px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.content-box ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.content-box li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.content-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0077B6;
    font-weight: bold;
    font-size: 18px;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #10367D 0%, #0077B6 100%);
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #0d2a63 0%, #005a8d 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 24px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

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

/* Muro Section */
.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;
    font-family: 'Poppins', sans-serif;
}

.muro-header p {
    font-size: 18px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* Comments Grid */
.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;
    font-family: 'Poppins', sans-serif;
}

.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;
    font-family: 'Poppins', sans-serif;
}

.comment-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.reaction-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.reaction-btn:hover {
    transform: scale(1.2);
}

.heart-icon {
    width: 20px;
    height: 20px;
    color: #999;
    stroke: #999;
    transition: all 0.3s ease;
}

.reaction-btn:hover .heart-icon {
    color: #ff6b6b;
    stroke: #ff6b6b;
}

.reaction-btn.heart-active .heart-icon {
    animation: heartBeat 0.6s ease;
    fill: #ff6b6b;
    color: #ff6b6b;
    stroke: #ff6b6b;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

.reaction-count {
    font-size: 14px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-section {
        padding: 0 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

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

    .content-box {
        padding: 32px;
    }

    .content-box h2 {
        font-size: 24px;
    }

    .faq-item {
        margin-bottom: 16px;
    }
}

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

    .logo {
        font-size: 22px;
    }

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

    nav a {
        font-size: 14px;
    }

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

    .page-section {
        padding: 0 24px;
        margin: 40px auto;
    }

    .page-header {
        margin-bottom: 35px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .content-box {
        padding: 24px;
        margin-bottom: 24px;
    }

    .content-box h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .content-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .content-box li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .content-box ul {
        margin-left: 20px;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 16px;
        font-size: 14px;
    }

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

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

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

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

    .comment-card {
        padding: 20px;
    }

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

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

    .reaction-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@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 14px;
        font-size: 12px;
    }

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

    .page-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 26px;
    }

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

    .content-box {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .content-box h2 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .content-box p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .content-box li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .content-box ul {
        margin-left: 16px;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 14px;
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 14px;
        font-size: 13px;
    }

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

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

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

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

    .comment-card {
        padding: 16px;
        border-radius: 12px;
    }

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

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

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

    .reaction-btn {
        padding: 5px 8px;
        font-size: 12px;
    }
}
