body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #fce4ec, #e0f2f7); /* Tonos rosados y azules muy suaves */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}
.foda-container {
    background-color: rgba(255, 255, 255, 0.95); /* Fondo blanco casi opaco */
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

h2{
    text-align: center;
}
.foda-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffe0b2 0%, transparent 70%); /* Círculo suave en la esquina */
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}
.foda-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #bbdefb 0%, transparent 70%); /* Círculo suave en la esquina opuesta */
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}
.foda-header {
    text-align: center;
    position: relative;
    z-index: 1;
}
.foda-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #880e4f; /* Rosa oscuro / Borgoña */
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
.foda-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
}
.foda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}
.foda-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out;
    border: 1px solid #f5f5f5;
}
.foda-item:hover {
    transform: translateY(-8px);
}
.foda-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}
.foda-item ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foda-item ol li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}
.foda-item ol li::before {
    content: '•'; /* Bullet point */
    position: absolute;
    left: 0;
    color: inherit; /* Color del texto del li */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Colores específicos para cada sección FODA */
.foda-fortalezas h2 { color: #4CAF50; border-color: #81C784; } /* Verde */
.foda-fortalezas ol li::before { color: #4CAF50; }

.foda-oportunidades h2 { color: #2196F3; border-color: #64B5F6; } /* Azul */
.foda-oportunidades ol li::before { color: #2196F3; }

.foda-debilidades h2 { color: #F44336; border-color: #E57373; } /* Rojo */
.foda-debilidades ol li::before { color: #F44336; }

.foda-amenazas h2 { color: #FF9800; border-color: #FFB74D; } /* Naranja */
.foda-amenazas ol li::before { color: #FF9800; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .foda-grid {
        grid-template-columns: 1fr;
    }
    .foda-container {
        padding: 25px;
    }
    .foda-header h1 {
        font-size: 2.2rem;
    }
    .foda-item {
        padding: 20px;
    }
    .foda-item h2 {
        font-size: 1.4rem;
    }
    .foda-item ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .foda-container {
        padding: 15px;
    }
    .foda-header h1 {
        font-size: 1.8rem;
    }
    .foda-item {
        padding: 15px;
    }
    .foda-item h2 {
        font-size: 1.2rem;
    }
    .foda-item ul li {
        font-size: 0.9rem;
    }
}