    body {
        font-family: 'Roboto', sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #f0f0f0;
    }
 /* Modificaciones al header */
header {
    background-color: #3498db;
    color: white;
    width: 100%;
    text-align: center;
    padding: 1.5rem 0; /* Aumentado de 1rem a 1.5rem */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Sombra más pronunciada */
    margin-bottom: 2rem; /* Añadir espacio después del header */
    position: relative;
    z-index: 10; /* Asegurar que esté por encima de otros elementos */
}

/* Estilos CSS para el subtítulo */
.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* Ajuste opcional del padding del header para acomodar el subtítulo */
header {
    padding: 1.2rem 0 1.5rem; /* Ajustar el padding superior e inferior */
}

    .section-container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
    }
   /* Modificaciones al contenedor del termómetro */
.thermometer-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem; /* Espacio superior aumentado */
    padding: 2.5rem 2rem; /* Padding vertical aumentado */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Sombra más suave */
    margin-bottom: 2rem;
    position: relative;
    background-color: #ffffff; /* Asegurar fondo blanco */
    border-radius: 12px; /* Bordes redondeados */
    border: 1px solid rgba(52, 152, 219, 0.1); /* Borde muy sutil */
}

.thermometer-container::before {
    content: '';
    position: absolute;
    top: 12px; /* Posición ajustada dentro del padding */
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
    border-radius: 3px;
}

    .thermometer {
        width: 80%;
        height: 60px;
        background-color: #2c3e50;
        border-radius: 30px;
        position: relative;
        overflow: visible;
        box-shadow: 0 0 10px rgba(0,0,0,0.2) inset;
    }
    .thermometer-fill {
        height: 100%;
        width: 50%;
        background: linear-gradient(to right, #3498db, #2ecc71, #f1c40f, #e67e22, #e74c3c);
        transition: width 0.5s ease-in-out;
        position: relative;
        overflow: hidden;
        border-radius: 30px 0 0 30px;
    }
    .thermometer-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
        background-size: 50px 50px;
        animation: move 2s linear infinite;
        z-index: 1;
    }
    @keyframes move {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 50px 50px;
        }
    }
    .percentage {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        font-weight: bold;
        color: #ffffff;
        z-index: 2;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .ranges {
        display: flex;
        justify-content: space-between;
        width: 80%;
        margin-top: 1rem;
    }
    .range {
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .range:hover {
        transform: translateY(-5px);
    }
    .range-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .range-name {
        font-size: 0.9rem;
        font-weight: bold;
    }
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }
    .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .close:hover,
    .close:focus {
        color: #2c3e50;
        text-decoration: none;
    }
    .button-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .action-button {
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .approach-button {
        background-color: #2ecc71;
        color: white;
    }
    .approach-button:hover {
        background-color: #27ae60;
    }
    .distance-button {
        background-color: #e74c3c;
        color: white;
    }
    .distance-button:hover {
        background-color: #c0392b;
    }
    .thermometer-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }
    .thermometer-icon.darkness-icon {
        left: -50px;
    }
    .thermometer-icon.god-icon {
        right: -50px;
    }
    .info-section {
        width: 100%;
        max-width: 1200px;
        margin: 2rem auto;
        background-color: #ffffff;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .info-section h2 {
        color: #3498db;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .info-section h3 {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .info-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .info-box {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .info-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #3498db;
    }
    .info-box h4 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .info-box p {
        color: #34495e;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .info-content {
            grid-template-columns: 1fr;
        }
    }
    .community-section {
        background-color: #f8f9fa;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem;
    }
    .community-section h2 {
        color: #3498db;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .community-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .calendar-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
    }
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 12px;
        margin-top: 1rem;
        width: 100%;
    }
    .calendar-day {
        background-color: #f0f8ff;
        border-radius: 5px;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 1.3rem;
        font-weight: bold;
    }
    .calendar-day:hover {
        background-color: #e6f3ff;
    }
    .calendar-day.selected {
        background-color: #3498db;
        color: white;
    }
    .calendar-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    .calendar-navigation button {
        background-color: #3498db;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .calendar-navigation button:hover {
        background-color: #2980b9;
    }
    #currentMonthYear {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .user-activity {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 2rem;
        transition: all 0.3s ease;
    }
    #activityForm {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #activityForm input,
    #activityForm textarea {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #ced4da;
        border-radius: 5px;
    }
    #activityForm label {
        font-weight: bold;
        margin-bottom: 0.25rem;
    }
    .popup {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        max-width: 80%;
        width: 300px;
    }
    .popup button {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: #3498db;
        color: white;
        border: none;
        border-radius: 3px;
        cursor: pointer;
    }
    .popup button:hover {
        background-color: #2980b9;
    }
    .community-counter {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem;
        margin-top: 3rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    .community-counter:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .community-counter h3 {
        color: #3498db;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .counter {
        font-size: 5rem;
        font-weight: bold;
        color: #2c3e50;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        margin: 1rem 0;
        transition: all 0.3s ease;
    }
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    .counter.animate {
        animation: pulse 1s ease-in-out;
    }
    #generateImage {
        background-color: #3498db;
        color: white;
        font-size: 1.1rem;
        padding: 12px 24px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    #generateImage:hover {
        background-color: #2980b9;
    }
    #joinCommunity {
        background-color: #2c3e50;
        color: white;
        font-size: 1rem;
        padding: 12px 24px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    #joinCommunity:hover {
        background-color: #34495e;
    }
    .muro-de-luz {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
        background-color: #f8f9fa;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 3rem;
    }
    .muro-de-luz h2 {
        color: #3498db;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    .muro-de-luz p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .post-it-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .post-it-form textarea, .post-it-form select {
        padding: 0.5rem;
        border: 1px solid #ced4da;
        border-radius: 5px;
        font-size: 1rem;
    }
    .post-it-form button, .filter-btn, #randomInspiration {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .post-it-form button {
        background-color: #3498db;
        color: white;
    }
    .post-it-form button:hover {
        background-color: #2980b9;
    }
    .post-it-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    .filter-btn, #randomInspiration {
        background-color: #ecf0f1;
        color: #34495e;
    }
    .filter-btn:hover, #randomInspiration:hover {
        background-color: #bdc3c7;
    }
    .post-it-wall {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    .post-it {
        background-color: #feff9c;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 150px;
        cursor: move;
        user-select: none;
        transition: box-shadow 0.3s ease;
    }
    .post-it:active {
        box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    }
    .post-it-download {
        cursor: pointer;
        display: inline-block;
        align-self: flex-start;
    }
    .post-it-download img {
        width: 20px;
        height: 20px;
    }
    .post-it.color-1 { background-color: #feff9c; }
    .post-it.color-2 { background-color: #7afcff; }
    .post-it.color-3 { background-color: #ff7eb9; }
    .post-it p {
        margin: 0;
        font-size: 0.9rem;
    }
    .post-it-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }
    .post-it-category {
        font-size: 0.8rem;
        font-weight: bold;
    }
    .post-it-likes {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .like-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
    }
    .yo-soy-testimonio {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        background-color: #f8f9fa;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem;
        margin-top: 3rem;
    }
    .yo-soy-testimonio h2 {
        color: #3498db;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .yo-soy-testimonio h3 {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
    @media (max-width: 768px) {
        .video-grid {
            grid-template-columns: 1fr;
        }
    }
    .video-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem;
        transition: transform 0.3s ease;
    }
    .video-item:hover {
        transform: translateY(-5px);
    }
    .video-item h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .video-item p {
        font-size: 1rem;
        color: #7f8c8d;
        margin-bottom: 1rem;
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        margin-bottom: 1rem;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .share-button {
        background-color: #3498db;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .share-button:hover {
        background-color: #2980b9;
    }
    .share-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .share-menu-content {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 300px;
        width: 100%;
    }
    .share-menu h3 {
        margin-top: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    .share-option {
        display: block;
        padding: 10px;
        margin-bottom: 10px;
        text-decoration: none;
        color: #333;
        background-color: #f0f0f0;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    .share-option:hover {
        background-color: #e0e0e0;
    }
    .share-option i {
        margin-right: 10px;
    }
    .share-menu button {
        display: block;
        width: 100%;
        padding: 10px;
        background-color: #3498db;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .share-menu button:hover {
        background-color: #2980b9;
    }
    .spiritual-registration {
        background-color: #f0f4f8;
        background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.15'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 3rem;
        text-align: center;
    }
    .spiritual-registration h2 {
        color: #3498db;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .spiritual-registration p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #34495e;
    }
    #spiritualForm {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    #spiritualForm input {
        padding: 0.8rem;
        border: 1px solid #ced4da;
        border-radius: 5px;
        font-size: 1rem;
    }
    #registrationSuccess {
        display: none;
        margin-top: 20px;
        color: green;
        font-weight: bold;
    }
    #registerButton {
        background-color: #2ecc71;
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 5px;
        font-size: 1.1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    #registerButton:hover {
        background-color: #27ae60;
    }
/* Mejoras visuales para la página "Creatividad al Servicio de Dios" */

/* Fondo con patrón sutil */
body {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Mejora del encabezado con gradiente y textura */
header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
}

header h1 {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 800;
}

/* Dimensión para todas las secciones containerizadas */
.section-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Decoración visual para secciones */
.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f1c40f, #e74c3c);
}

/* Mejora del termómetro con efectos de luz */
.thermometer-container {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.thermometer {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15), inset 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

/* Mejora para los iconos de rangos */
.range {
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.range:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateY(-8px);
}

.range-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

.range:hover .range-icon {
    transform: scale(1.2);
}

/* Botones con más dimensión */
.action-button, #generateImage, #joinCommunity, #addPostIt, .filter-btn, #randomInspiration, .share-button, .share-video-button {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.action-button:hover, #generateImage:hover, #joinCommunity:hover, #addPostIt:hover, .filter-btn:hover, #randomInspiration:hover, .share-button:hover, .share-video-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.action-button:active, #generateImage:active, #joinCommunity:active, #addPostIt:active, .filter-btn:active, #randomInspiration:active, .share-button:active, .share-video-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Efecto de onda en botones */
.action-button::after, #generateImage::after, #joinCommunity::after, #addPostIt::after, .share-button::after, .share-video-button::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.action-button:active::after, #generateImage:active::after, #joinCommunity:active::after, #addPostIt:active::after, .share-button:active::after, .share-video-button:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Mejora visual para las cajas de información */
.info-box {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05), -5px -5px 15px rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.02);
    padding: 2rem;
}

.info-box i {
    background: linear-gradient(135deg, #3498db, #2980b9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
}

/* Post-its con efecto de papel */
.post-it {
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 2px;
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.post-it::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(0,0,0,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.post-it:hover {
    transform: translateY(-5px) rotate(-0.5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.post-it:nth-child(odd) {
    transform: rotate(-0.5deg);
}

.post-it:nth-child(odd):hover {
    transform: translateY(-5px) rotate(0.5deg);
}

.post-it p, .post-it-footer {
    position: relative;
    z-index: 1;
}

/* Mejoras para títulos principales */
.section-container h2 {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.section-container h2::after {
    content: '';
    position: absolute;
    left: 25%;
    bottom: -10px;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

/* Mejora para calendario */
.calendar-day {
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background-color: #e6f7ff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mejora para vídeos */
.main-video-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: all 0.3s ease;
}

.main-video-container:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Efecto de destello para contadores y números */
@keyframes shine {
    0% {
        background-position: -100px;
    }
    20% {
        background-position: 200px;
    }
    100% {
        background-position: 200px;
    }
}

.counter {
    background: linear-gradient(to right, #3498db 0%, #3498db 30%, #2ecc71 50%, #3498db 70%, #3498db 100%);
    background-size: 200px 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s infinite linear;
}

/* Sombreado para imágenes */
img, iframe {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

/* Encabezados mejorados dentro de secciones */
.section-container h3 {
    color: #34495e;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mejora de inputs y textareas */
input, textarea, select {
    border: 2px solid #e7ecf0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #3498db !important;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Mejora del efecto hover para las cajas de actividad */
.video-item, .info-box, .user-activity, .calendar-container, .community-counter {
    transition: all 0.3s ease;
}

.video-item:hover, .info-box:hover, .user-activity:hover, .calendar-container:hover, .community-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Media queries para garantizar responsividad */
@media (max-width: 768px) {
    .section-container {
        padding: 1.5rem;
    }
    
    .range-icon {
        font-size: 2rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
}

/* Texturas sutiles para todas las secciones */
.section-container {
    position: relative;
    overflow: hidden;
}

.section-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Cada sección con una textura única pero sutil */
.info-section::after {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='64' viewBox='0 0 32 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 28h20V16h-4v8H4V4h28v28h-4V8H8v12h4v-8h12v20H0v-4zm12 8h20v4H16v24H0v-4h12V36zm16 12h-4v12h8v4H20V44h12v12h-4v-8zM0 36h8v20H0v-4h4V40H0v-4z' fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.community-section::after {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.muro-de-luz::after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M10 0v20L0 10M10 0v20l10-10'/%3E%3C/g%3E%3C/svg%3E");
}

.yo-soy-testimonio::after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.spiritual-registration::after {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.video-section::after {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Asegurarse de que el contenido esté por encima de la textura */
.section-container > * {
    position: relative;
    z-index: 1;
}

/* Tarjetas Modernas para la sección "Caminos de Luz y Sombras" */
.info-section .info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/*
.info-section .info-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.info-section .info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(52, 152, 219, 0.08),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.info-section .info-box:hover::before {
    transform: rotate(45deg) translate(10%, 10%);
}

.info-section .info-box i {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-section .info-box h4 {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-section .info-box p {
    position: relative;
    z-index: 1;
    color: #34495e;
    font-size: 1rem;
    line-height: 1.7;
}

.info-section .info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}*/

/* Bordes y sombreado mejorados para las tarjetas de "Caminos de Luz y Sombras" */
.info-section .info-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    /* Borde más definido con gradiente sutil */
    border: 2px solid;
    border-image: linear-gradient(45deg, #3498db, #2ecc71) 1;
    padding: 2rem;
    /* Sombreado más pronunciado para destacar del fondo */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Mejora del efecto hover */
.info-section .info-box:hover {
    transform: translateY(-8px);
    /* Sombreado más intenso al hacer hover */
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(52, 152, 219, 0.3);
}

/* Efecto de destello en el borde al hacer hover */
.info-section .info-box::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: transparent;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    pointer-events: none;
}

.info-section .info-box:hover::after {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
}

/* Fondo de la sección con un tono sutilmente diferente para mayor contraste */
.info-section {
    background-color: #f5f7fa;
}

/* Efecto de brillo en los iconos al hacer hover */
.info-section .info-box:hover i {
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mejora del título de la sección */
.info-section h2 {
    background: linear-gradient(90deg, #3498db, #2980b9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: center;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    border-radius: 3px;
}

.info-section h3 {
    color: #34495e;
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .info-section .info-box {
        padding: 1.5rem;
    }
    
    .info-section .info-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}